blob: 357d99b9d0e5f02e2c824601b583f5ef5afa3e8b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/ipmi.h>
37#include <linux/ipmi_smi.h>
Arnd Bergmannaf96f012008-05-20 19:16:04 +020038#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/watchdog.h>
40#include <linux/miscdevice.h>
41#include <linux/init.h>
Corey Minyardd6dfd132006-03-31 02:30:41 -080042#include <linux/completion.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070043#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/rwsem.h>
45#include <linux/errno.h>
46#include <asm/uaccess.h>
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 Minyardcc4673e2005-11-07 00:59:57 -080052#include <linux/string.h>
53#include <linux/ctype.h>
Corey Minyard612b5a82007-10-18 03:07:10 -070054#include <linux/delay.h>
Corey Minyardb3856762005-11-07 01:00:05 -080055#include <asm/atomic.h>
Corey Minyardf64da952007-05-08 00:23:58 -070056
Corey Minyard612b5a82007-10-18 03:07:10 -070057#ifdef CONFIG_X86
Corey Minyard36c7dc42008-04-29 01:01:12 -070058/*
59 * This is ugly, but I've determined that x86 is the only architecture
60 * that can reasonably support the IPMI NMI watchdog timeout at this
61 * time. If another architecture adds this capability somehow, it
62 * will have to be a somewhat different mechanism and I have no idea
63 * how it will work. So in the unlikely event that another
64 * architecture supports this, we can figure out a good generic
65 * mechanism for it at that time.
66 */
Corey Minyard612b5a82007-10-18 03:07:10 -070067#include <asm/kdebug.h>
68#define HAVE_DIE_NMI
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif
70
71#define PFX "IPMI Watchdog: "
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*
74 * The IPMI command/response information for the watchdog timer.
75 */
76
77/* values for byte 1 of the set command, byte 2 of the get response. */
78#define WDOG_DONT_LOG (1 << 7)
79#define WDOG_DONT_STOP_ON_SET (1 << 6)
80#define WDOG_SET_TIMER_USE(byte, use) \
81 byte = ((byte) & 0xf8) | ((use) & 0x7)
82#define WDOG_GET_TIMER_USE(byte) ((byte) & 0x7)
83#define WDOG_TIMER_USE_BIOS_FRB2 1
84#define WDOG_TIMER_USE_BIOS_POST 2
85#define WDOG_TIMER_USE_OS_LOAD 3
86#define WDOG_TIMER_USE_SMS_OS 4
87#define WDOG_TIMER_USE_OEM 5
88
89/* values for byte 2 of the set command, byte 3 of the get response. */
90#define WDOG_SET_PRETIMEOUT_ACT(byte, use) \
91 byte = ((byte) & 0x8f) | (((use) & 0x7) << 4)
92#define WDOG_GET_PRETIMEOUT_ACT(byte) (((byte) >> 4) & 0x7)
93#define WDOG_PRETIMEOUT_NONE 0
94#define WDOG_PRETIMEOUT_SMI 1
95#define WDOG_PRETIMEOUT_NMI 2
96#define WDOG_PRETIMEOUT_MSG_INT 3
97
98/* Operations that can be performed on a pretimout. */
99#define WDOG_PREOP_NONE 0
100#define WDOG_PREOP_PANIC 1
Corey Minyard36c7dc42008-04-29 01:01:12 -0700101/* Cause data to be available to read. Doesn't work in NMI mode. */
102#define WDOG_PREOP_GIVE_DATA 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/* Actions to perform on a full timeout. */
105#define WDOG_SET_TIMEOUT_ACT(byte, use) \
106 byte = ((byte) & 0xf8) | ((use) & 0x7)
107#define WDOG_GET_TIMEOUT_ACT(byte) ((byte) & 0x7)
108#define WDOG_TIMEOUT_NONE 0
109#define WDOG_TIMEOUT_RESET 1
110#define WDOG_TIMEOUT_POWER_DOWN 2
111#define WDOG_TIMEOUT_POWER_CYCLE 3
112
Corey Minyard36c7dc42008-04-29 01:01:12 -0700113/*
114 * Byte 3 of the get command, byte 4 of the get response is the
115 * pre-timeout in seconds.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* Bits for setting byte 4 of the set command, byte 5 of the get response. */
119#define WDOG_EXPIRE_CLEAR_BIOS_FRB2 (1 << 1)
120#define WDOG_EXPIRE_CLEAR_BIOS_POST (1 << 2)
121#define WDOG_EXPIRE_CLEAR_OS_LOAD (1 << 3)
122#define WDOG_EXPIRE_CLEAR_SMS_OS (1 << 4)
123#define WDOG_EXPIRE_CLEAR_OEM (1 << 5)
124
Corey Minyard36c7dc42008-04-29 01:01:12 -0700125/*
126 * Setting/getting the watchdog timer value. This is for bytes 5 and
127 * 6 (the timeout time) of the set command, and bytes 6 and 7 (the
128 * timeout time) and 8 and 9 (the current countdown value) of the
129 * response. The timeout value is given in seconds (in the command it
130 * is 100ms intervals).
131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define WDOG_SET_TIMEOUT(byte1, byte2, val) \
133 (byte1) = (((val) * 10) & 0xff), (byte2) = (((val) * 10) >> 8)
134#define WDOG_GET_TIMEOUT(byte1, byte2) \
135 (((byte1) | ((byte2) << 8)) / 10)
136
137#define IPMI_WDOG_RESET_TIMER 0x22
138#define IPMI_WDOG_SET_TIMER 0x24
139#define IPMI_WDOG_GET_TIMER 0x25
140
141/* These are here until the real ones get into the watchdog.h interface. */
142#ifndef WDIOC_GETTIMEOUT
143#define WDIOC_GETTIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 20, int)
144#endif
145#ifndef WDIOC_SET_PRETIMEOUT
146#define WDIOC_SET_PRETIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 21, int)
147#endif
148#ifndef WDIOC_GET_PRETIMEOUT
149#define WDIOC_GET_PRETIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 22, int)
150#endif
151
Andrey Panin4bfdf372005-07-27 11:43:58 -0700152static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800154static ipmi_user_t watchdog_user;
Corey Minyardb2c03942006-12-06 20:41:00 -0800155static int watchdog_ifnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157/* Default the timeout to 10 seconds. */
158static int timeout = 10;
159
160/* The pre-timeout is disabled by default. */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800161static int pretimeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163/* Default action is to reset the board on a timeout. */
164static unsigned char action_val = WDOG_TIMEOUT_RESET;
165
166static char action[16] = "reset";
167
168static unsigned char preaction_val = WDOG_PRETIMEOUT_NONE;
169
170static char preaction[16] = "pre_none";
171
172static unsigned char preop_val = WDOG_PREOP_NONE;
173
174static char preop[16] = "preop_none";
175static DEFINE_SPINLOCK(ipmi_read_lock);
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800176static char data_to_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static DECLARE_WAIT_QUEUE_HEAD(read_q);
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800178static struct fasync_struct *fasync_q;
179static char pretimeout_since_last_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static char expect_close;
181
Corey Minyardb2c03942006-12-06 20:41:00 -0800182static int ifnum_to_use = -1;
183
Corey Minyardcc4673e2005-11-07 00:59:57 -0800184/* Parameters to ipmi_set_timeout */
185#define IPMI_SET_TIMEOUT_NO_HB 0
186#define IPMI_SET_TIMEOUT_HB_IF_NECESSARY 1
187#define IPMI_SET_TIMEOUT_FORCE_HB 2
188
189static int ipmi_set_timeout(int do_heartbeat);
Corey Minyardb2c03942006-12-06 20:41:00 -0800190static void ipmi_register_watchdog(int ipmi_intf);
191static void ipmi_unregister_watchdog(int ipmi_intf);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800192
Corey Minyard36c7dc42008-04-29 01:01:12 -0700193/*
194 * If true, the driver will start running as soon as it is configured
195 * and ready.
196 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800197static int start_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Corey Minyardcc4673e2005-11-07 00:59:57 -0800199static int set_param_int(const char *val, struct kernel_param *kp)
200{
201 char *endp;
202 int l;
203 int rv = 0;
204
205 if (!val)
206 return -EINVAL;
207 l = simple_strtoul(val, &endp, 0);
208 if (endp == val)
209 return -EINVAL;
210
Corey Minyardcc4673e2005-11-07 00:59:57 -0800211 *((int *)kp->arg) = l;
212 if (watchdog_user)
213 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800214
215 return rv;
216}
217
218static int get_param_int(char *buffer, struct kernel_param *kp)
219{
220 return sprintf(buffer, "%i", *((int *)kp->arg));
221}
222
223typedef int (*action_fn)(const char *intval, char *outval);
224
225static int action_op(const char *inval, char *outval);
226static int preaction_op(const char *inval, char *outval);
227static int preop_op(const char *inval, char *outval);
228static void check_parms(void);
229
230static int set_param_str(const char *val, struct kernel_param *kp)
231{
232 action_fn fn = (action_fn) kp->arg;
233 int rv = 0;
Sebastien Dugué43cdff92006-12-29 16:46:53 -0800234 char valcp[16];
235 char *s;
Corey Minyardcc4673e2005-11-07 00:59:57 -0800236
Sebastien Dugué43cdff92006-12-29 16:46:53 -0800237 strncpy(valcp, val, 16);
238 valcp[15] = '\0';
Pekka Enberg66f969d2006-06-23 02:05:45 -0700239
Sebastien Dugué43cdff92006-12-29 16:46:53 -0800240 s = strstrip(valcp);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800241
Pekka Enberg66f969d2006-06-23 02:05:45 -0700242 rv = fn(s, NULL);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800243 if (rv)
Corey Minyardf8fbcd32007-10-18 03:07:08 -0700244 goto out;
Corey Minyardcc4673e2005-11-07 00:59:57 -0800245
246 check_parms();
247 if (watchdog_user)
248 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
249
Corey Minyardf8fbcd32007-10-18 03:07:08 -0700250 out:
Corey Minyardcc4673e2005-11-07 00:59:57 -0800251 return rv;
252}
253
254static int get_param_str(char *buffer, struct kernel_param *kp)
255{
256 action_fn fn = (action_fn) kp->arg;
257 int rv;
258
259 rv = fn(NULL, buffer);
260 if (rv)
261 return rv;
262 return strlen(buffer);
263}
264
Corey Minyardb2c03942006-12-06 20:41:00 -0800265
266static int set_param_wdog_ifnum(const char *val, struct kernel_param *kp)
267{
268 int rv = param_set_int(val, kp);
269 if (rv)
270 return rv;
271 if ((ifnum_to_use < 0) || (ifnum_to_use == watchdog_ifnum))
272 return 0;
273
274 ipmi_unregister_watchdog(watchdog_ifnum);
275 ipmi_register_watchdog(ifnum_to_use);
276 return 0;
277}
278
279module_param_call(ifnum_to_use, set_param_wdog_ifnum, get_param_int,
280 &ifnum_to_use, 0644);
281MODULE_PARM_DESC(ifnum_to_use, "The interface number to use for the watchdog "
282 "timer. Setting to -1 defaults to the first registered "
283 "interface");
284
Corey Minyardcc4673e2005-11-07 00:59:57 -0800285module_param_call(timeout, set_param_int, get_param_int, &timeout, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286MODULE_PARM_DESC(timeout, "Timeout value in seconds.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800287
288module_param_call(pretimeout, set_param_int, get_param_int, &pretimeout, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289MODULE_PARM_DESC(pretimeout, "Pretimeout value in seconds.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800290
291module_param_call(action, set_param_str, get_param_str, action_op, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292MODULE_PARM_DESC(action, "Timeout action. One of: "
293 "reset, none, power_cycle, power_off.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800294
295module_param_call(preaction, set_param_str, get_param_str, preaction_op, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296MODULE_PARM_DESC(preaction, "Pretimeout action. One of: "
297 "pre_none, pre_smi, pre_nmi, pre_int.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800298
299module_param_call(preop, set_param_str, get_param_str, preop_op, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300MODULE_PARM_DESC(preop, "Pretimeout driver operation. One of: "
301 "preop_none, preop_panic, preop_give_data.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800302
Corey Minyardb2c03942006-12-06 20:41:00 -0800303module_param(start_now, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304MODULE_PARM_DESC(start_now, "Set to 1 to start the watchdog as"
305 "soon as the driver is loaded.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800306
307module_param(nowayout, int, 0644);
Corey Minyardb2c03942006-12-06 20:41:00 -0800308MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
309 "(default=CONFIG_WATCHDOG_NOWAYOUT)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311/* Default state of the timer. */
312static unsigned char ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
313
314/* If shutting down via IPMI, we ignore the heartbeat. */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800315static int ipmi_ignore_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317/* Is someone using the watchdog? Only one user is allowed. */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800318static unsigned long ipmi_wdog_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Corey Minyard36c7dc42008-04-29 01:01:12 -0700320/*
321 * If set to 1, the heartbeat command will set the state to reset and
322 * start the timer. The timer doesn't normally run when the driver is
323 * first opened until the heartbeat is set the first time, this
324 * variable is used to accomplish this.
325 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800326static int ipmi_start_timer_on_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328/* IPMI version of the BMC. */
329static unsigned char ipmi_version_major;
330static unsigned char ipmi_version_minor;
331
Corey Minyardb3856762005-11-07 01:00:05 -0800332/* If a pretimeout occurs, this is used to allow only one panic to happen. */
333static atomic_t preop_panic_excl = ATOMIC_INIT(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Corey Minyard612b5a82007-10-18 03:07:10 -0700335#ifdef HAVE_DIE_NMI
336static int testing_nmi;
337static int nmi_handler_registered;
338#endif
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static int ipmi_heartbeat(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Corey Minyard36c7dc42008-04-29 01:01:12 -0700342/*
343 * We use a mutex to make sure that only one thing can send a set
344 * timeout at one time, because we only have one copy of the data.
345 * The mutex is claimed when the set_timeout is sent and freed
346 * when both messages are free.
347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static atomic_t set_timeout_tofree = ATOMIC_INIT(0);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800349static DEFINE_MUTEX(set_timeout_lock);
350static DECLARE_COMPLETION(set_timeout_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351static void set_timeout_free_smi(struct ipmi_smi_msg *msg)
352{
353 if (atomic_dec_and_test(&set_timeout_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800354 complete(&set_timeout_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356static void set_timeout_free_recv(struct ipmi_recv_msg *msg)
357{
358 if (atomic_dec_and_test(&set_timeout_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800359 complete(&set_timeout_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
Corey Minyard36c7dc42008-04-29 01:01:12 -0700361static struct ipmi_smi_msg set_timeout_smi_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .done = set_timeout_free_smi
363};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700364static struct ipmi_recv_msg set_timeout_recv_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 .done = set_timeout_free_recv
366};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int i_ipmi_set_timeout(struct ipmi_smi_msg *smi_msg,
369 struct ipmi_recv_msg *recv_msg,
370 int *send_heartbeat_now)
371{
372 struct kernel_ipmi_msg msg;
373 unsigned char data[6];
374 int rv;
375 struct ipmi_system_interface_addr addr;
376 int hbnow = 0;
377
378
Corey Minyard612b5a82007-10-18 03:07:10 -0700379 /* These can be cleared as we are setting the timeout. */
380 pretimeout_since_last_heartbeat = 0;
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 data[0] = 0;
383 WDOG_SET_TIMER_USE(data[0], WDOG_TIMER_USE_SMS_OS);
384
385 if ((ipmi_version_major > 1)
Corey Minyard36c7dc42008-04-29 01:01:12 -0700386 || ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* This is an IPMI 1.5-only feature. */
388 data[0] |= WDOG_DONT_STOP_ON_SET;
389 } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700390 /*
391 * In ipmi 1.0, setting the timer stops the watchdog, we
392 * need to start it back up again.
393 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 hbnow = 1;
395 }
396
397 data[1] = 0;
398 WDOG_SET_TIMEOUT_ACT(data[1], ipmi_watchdog_state);
Corey Minyard8f05ee92005-09-06 15:18:39 -0700399 if ((pretimeout > 0) && (ipmi_watchdog_state != WDOG_TIMEOUT_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 WDOG_SET_PRETIMEOUT_ACT(data[1], preaction_val);
401 data[2] = pretimeout;
402 } else {
403 WDOG_SET_PRETIMEOUT_ACT(data[1], WDOG_PRETIMEOUT_NONE);
404 data[2] = 0; /* No pretimeout. */
405 }
406 data[3] = 0;
407 WDOG_SET_TIMEOUT(data[4], data[5], timeout);
408
409 addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
410 addr.channel = IPMI_BMC_CHANNEL;
411 addr.lun = 0;
412
413 msg.netfn = 0x06;
414 msg.cmd = IPMI_WDOG_SET_TIMER;
415 msg.data = data;
416 msg.data_len = sizeof(data);
417 rv = ipmi_request_supply_msgs(watchdog_user,
418 (struct ipmi_addr *) &addr,
419 0,
420 &msg,
421 NULL,
422 smi_msg,
423 recv_msg,
424 1);
425 if (rv) {
426 printk(KERN_WARNING PFX "set timeout error: %d\n",
427 rv);
428 }
429
430 if (send_heartbeat_now)
431 *send_heartbeat_now = hbnow;
432
433 return rv;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static int ipmi_set_timeout(int do_heartbeat)
437{
438 int send_heartbeat_now;
439 int rv;
440
441
442 /* We can only send one of these at a time. */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800443 mutex_lock(&set_timeout_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 atomic_set(&set_timeout_tofree, 2);
446
447 rv = i_ipmi_set_timeout(&set_timeout_smi_msg,
448 &set_timeout_recv_msg,
449 &send_heartbeat_now);
450 if (rv) {
Corey Minyardd6dfd132006-03-31 02:30:41 -0800451 mutex_unlock(&set_timeout_lock);
452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
Corey Minyardd6dfd132006-03-31 02:30:41 -0800455 wait_for_completion(&set_timeout_wait);
456
Corey Minyard612b5a82007-10-18 03:07:10 -0700457 mutex_unlock(&set_timeout_lock);
458
Corey Minyardd6dfd132006-03-31 02:30:41 -0800459 if ((do_heartbeat == IPMI_SET_TIMEOUT_FORCE_HB)
460 || ((send_heartbeat_now)
461 && (do_heartbeat == IPMI_SET_TIMEOUT_HB_IF_NECESSARY)))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800462 rv = ipmi_heartbeat();
Corey Minyardd6dfd132006-03-31 02:30:41 -0800463
464out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return rv;
466}
467
Corey Minyardfcfa4722007-10-18 03:07:09 -0700468static atomic_t panic_done_count = ATOMIC_INIT(0);
469
470static void panic_smi_free(struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Corey Minyardfcfa4722007-10-18 03:07:09 -0700472 atomic_dec(&panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
Corey Minyardfcfa4722007-10-18 03:07:09 -0700474static void panic_recv_free(struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Corey Minyardfcfa4722007-10-18 03:07:09 -0700476 atomic_dec(&panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
Corey Minyardfcfa4722007-10-18 03:07:09 -0700478
Corey Minyard36c7dc42008-04-29 01:01:12 -0700479static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700480 .done = panic_smi_free
481};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700482static struct ipmi_recv_msg panic_halt_heartbeat_recv_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700483 .done = panic_recv_free
484};
485
486static void panic_halt_ipmi_heartbeat(void)
487{
488 struct kernel_ipmi_msg msg;
489 struct ipmi_system_interface_addr addr;
490 int rv;
491
Corey Minyard36c7dc42008-04-29 01:01:12 -0700492 /*
493 * Don't reset the timer if we have the timer turned off, that
494 * re-enables the watchdog.
495 */
Corey Minyardfcfa4722007-10-18 03:07:09 -0700496 if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
497 return;
498
499 addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
500 addr.channel = IPMI_BMC_CHANNEL;
501 addr.lun = 0;
502
503 msg.netfn = 0x06;
504 msg.cmd = IPMI_WDOG_RESET_TIMER;
505 msg.data = NULL;
506 msg.data_len = 0;
507 rv = ipmi_request_supply_msgs(watchdog_user,
508 (struct ipmi_addr *) &addr,
509 0,
510 &msg,
511 NULL,
512 &panic_halt_heartbeat_smi_msg,
513 &panic_halt_heartbeat_recv_msg,
514 1);
515 if (!rv)
516 atomic_add(2, &panic_done_count);
517}
518
Corey Minyard36c7dc42008-04-29 01:01:12 -0700519static struct ipmi_smi_msg panic_halt_smi_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700520 .done = panic_smi_free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700522static struct ipmi_recv_msg panic_halt_recv_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700523 .done = panic_recv_free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524};
525
Corey Minyard36c7dc42008-04-29 01:01:12 -0700526/*
527 * Special call, doesn't claim any locks. This is only to be called
528 * at panic or halt time, in run-to-completion mode, when the caller
529 * is the only CPU and the only thing that will be going is these IPMI
530 * calls.
531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532static void panic_halt_ipmi_set_timeout(void)
533{
534 int send_heartbeat_now;
535 int rv;
536
Corey Minyardfcfa4722007-10-18 03:07:09 -0700537 /* Wait for the messages to be free. */
538 while (atomic_read(&panic_done_count) != 0)
539 ipmi_poll_interface(watchdog_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 rv = i_ipmi_set_timeout(&panic_halt_smi_msg,
541 &panic_halt_recv_msg,
542 &send_heartbeat_now);
543 if (!rv) {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700544 atomic_add(2, &panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (send_heartbeat_now)
546 panic_halt_ipmi_heartbeat();
Corey Minyardfcfa4722007-10-18 03:07:09 -0700547 } else
548 printk(KERN_WARNING PFX
549 "Unable to extend the watchdog timeout.");
550 while (atomic_read(&panic_done_count) != 0)
551 ipmi_poll_interface(watchdog_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Corey Minyard36c7dc42008-04-29 01:01:12 -0700554/*
555 * We use a mutex to make sure that only one thing can send a
556 * heartbeat at one time, because we only have one copy of the data.
557 * The semaphore is claimed when the set_timeout is sent and freed
558 * when both messages are free.
559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static atomic_t heartbeat_tofree = ATOMIC_INIT(0);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800561static DEFINE_MUTEX(heartbeat_lock);
562static DECLARE_COMPLETION(heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static void heartbeat_free_smi(struct ipmi_smi_msg *msg)
564{
565 if (atomic_dec_and_test(&heartbeat_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800566 complete(&heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568static void heartbeat_free_recv(struct ipmi_recv_msg *msg)
569{
570 if (atomic_dec_and_test(&heartbeat_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800571 complete(&heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
Corey Minyard36c7dc42008-04-29 01:01:12 -0700573static struct ipmi_smi_msg heartbeat_smi_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 .done = heartbeat_free_smi
575};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700576static struct ipmi_recv_msg heartbeat_recv_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 .done = heartbeat_free_recv
578};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static int ipmi_heartbeat(void)
581{
582 struct kernel_ipmi_msg msg;
583 int rv;
584 struct ipmi_system_interface_addr addr;
585
Corey Minyard612b5a82007-10-18 03:07:10 -0700586 if (ipmi_ignore_heartbeat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 if (ipmi_start_timer_on_heartbeat) {
Linus Torvaldsfaa8b6c2007-05-14 15:24:24 -0700590 ipmi_start_timer_on_heartbeat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 ipmi_watchdog_state = action_val;
592 return ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
593 } else if (pretimeout_since_last_heartbeat) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700594 /*
595 * A pretimeout occurred, make sure we set the timeout.
596 * We don't want to set the action, though, we want to
597 * leave that alone (thus it can't be combined with the
598 * above operation.
599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
601 }
602
Corey Minyardd6dfd132006-03-31 02:30:41 -0800603 mutex_lock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 atomic_set(&heartbeat_tofree, 2);
606
Corey Minyard36c7dc42008-04-29 01:01:12 -0700607 /*
608 * Don't reset the timer if we have the timer turned off, that
609 * re-enables the watchdog.
610 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) {
Corey Minyardd6dfd132006-03-31 02:30:41 -0800612 mutex_unlock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return 0;
614 }
615
616 addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
617 addr.channel = IPMI_BMC_CHANNEL;
618 addr.lun = 0;
619
620 msg.netfn = 0x06;
621 msg.cmd = IPMI_WDOG_RESET_TIMER;
622 msg.data = NULL;
623 msg.data_len = 0;
624 rv = ipmi_request_supply_msgs(watchdog_user,
625 (struct ipmi_addr *) &addr,
626 0,
627 &msg,
628 NULL,
629 &heartbeat_smi_msg,
630 &heartbeat_recv_msg,
631 1);
632 if (rv) {
Corey Minyardd6dfd132006-03-31 02:30:41 -0800633 mutex_unlock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 printk(KERN_WARNING PFX "heartbeat failure: %d\n",
635 rv);
636 return rv;
637 }
638
639 /* Wait for the heartbeat to be sent. */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800640 wait_for_completion(&heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 if (heartbeat_recv_msg.msg.data[0] != 0) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700643 /*
644 * Got an error in the heartbeat response. It was already
645 * reported in ipmi_wdog_msg_handler, but we should return
646 * an error here.
647 */
648 rv = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
Corey Minyardd6dfd132006-03-31 02:30:41 -0800651 mutex_unlock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 return rv;
654}
655
Corey Minyard36c7dc42008-04-29 01:01:12 -0700656static struct watchdog_info ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 .options = 0, /* WDIOF_SETTIMEOUT, */
658 .firmware_version = 1,
659 .identity = "IPMI"
660};
661
662static int ipmi_ioctl(struct inode *inode, struct file *file,
663 unsigned int cmd, unsigned long arg)
664{
665 void __user *argp = (void __user *)arg;
666 int i;
667 int val;
668
Corey Minyard36c7dc42008-04-29 01:01:12 -0700669 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 case WDIOC_GETSUPPORT:
671 i = copy_to_user(argp, &ident, sizeof(ident));
672 return i ? -EFAULT : 0;
673
674 case WDIOC_SETTIMEOUT:
675 i = copy_from_user(&val, argp, sizeof(int));
676 if (i)
677 return -EFAULT;
678 timeout = val;
679 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
680
681 case WDIOC_GETTIMEOUT:
682 i = copy_to_user(argp, &timeout, sizeof(timeout));
683 if (i)
684 return -EFAULT;
685 return 0;
686
687 case WDIOC_SET_PRETIMEOUT:
Corey Minyard783e6bc2007-11-20 12:14:46 -0800688 case WDIOC_SETPRETIMEOUT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 i = copy_from_user(&val, argp, sizeof(int));
690 if (i)
691 return -EFAULT;
692 pretimeout = val;
693 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
694
695 case WDIOC_GET_PRETIMEOUT:
Corey Minyard783e6bc2007-11-20 12:14:46 -0800696 case WDIOC_GETPRETIMEOUT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 i = copy_to_user(argp, &pretimeout, sizeof(pretimeout));
698 if (i)
699 return -EFAULT;
700 return 0;
701
702 case WDIOC_KEEPALIVE:
703 return ipmi_heartbeat();
704
705 case WDIOC_SETOPTIONS:
706 i = copy_from_user(&val, argp, sizeof(int));
707 if (i)
708 return -EFAULT;
Corey Minyard36c7dc42008-04-29 01:01:12 -0700709 if (val & WDIOS_DISABLECARD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
711 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
712 ipmi_start_timer_on_heartbeat = 0;
713 }
714
Corey Minyard36c7dc42008-04-29 01:01:12 -0700715 if (val & WDIOS_ENABLECARD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 ipmi_watchdog_state = action_val;
717 ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
718 }
719 return 0;
720
721 case WDIOC_GETSTATUS:
722 val = 0;
723 i = copy_to_user(argp, &val, sizeof(val));
724 if (i)
725 return -EFAULT;
726 return 0;
727
728 default:
729 return -ENOIOCTLCMD;
730 }
731}
732
733static ssize_t ipmi_write(struct file *file,
734 const char __user *buf,
735 size_t len,
736 loff_t *ppos)
737{
738 int rv;
739
740 if (len) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700741 if (!nowayout) {
742 size_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 /* In case it was set long ago */
745 expect_close = 0;
746
Corey Minyard36c7dc42008-04-29 01:01:12 -0700747 for (i = 0; i != len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 char c;
749
750 if (get_user(c, buf + i))
751 return -EFAULT;
752 if (c == 'V')
753 expect_close = 42;
754 }
755 }
756 rv = ipmi_heartbeat();
757 if (rv)
758 return rv;
759 return 1;
760 }
761 return 0;
762}
763
764static ssize_t ipmi_read(struct file *file,
765 char __user *buf,
766 size_t count,
767 loff_t *ppos)
768{
769 int rv = 0;
770 wait_queue_t wait;
771
772 if (count <= 0)
773 return 0;
774
Corey Minyard36c7dc42008-04-29 01:01:12 -0700775 /*
776 * Reading returns if the pretimeout has gone off, and it only does
777 * it once per pretimeout.
778 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 spin_lock(&ipmi_read_lock);
780 if (!data_to_read) {
781 if (file->f_flags & O_NONBLOCK) {
782 rv = -EAGAIN;
783 goto out;
784 }
Corey Minyard36c7dc42008-04-29 01:01:12 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 init_waitqueue_entry(&wait, current);
787 add_wait_queue(&read_q, &wait);
788 while (!data_to_read) {
789 set_current_state(TASK_INTERRUPTIBLE);
790 spin_unlock(&ipmi_read_lock);
791 schedule();
792 spin_lock(&ipmi_read_lock);
793 }
794 remove_wait_queue(&read_q, &wait);
Corey Minyard36c7dc42008-04-29 01:01:12 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (signal_pending(current)) {
797 rv = -ERESTARTSYS;
798 goto out;
799 }
800 }
801 data_to_read = 0;
802
803 out:
804 spin_unlock(&ipmi_read_lock);
805
806 if (rv == 0) {
807 if (copy_to_user(buf, &data_to_read, 1))
808 rv = -EFAULT;
809 else
810 rv = 1;
811 }
812
813 return rv;
814}
815
816static int ipmi_open(struct inode *ino, struct file *filep)
817{
Corey Minyard36c7dc42008-04-29 01:01:12 -0700818 switch (iminor(ino)) {
819 case WATCHDOG_MINOR:
Corey Minyarde8b33612005-09-06 15:18:45 -0700820 if (test_and_set_bit(0, &ipmi_wdog_open))
Corey Minyard36c7dc42008-04-29 01:01:12 -0700821 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Arnd Bergmannaf96f012008-05-20 19:16:04 +0200823 cycle_kernel_lock();
824
Corey Minyard36c7dc42008-04-29 01:01:12 -0700825 /*
826 * Don't start the timer now, let it start on the
827 * first heartbeat.
828 */
Corey Minyarde8b33612005-09-06 15:18:45 -0700829 ipmi_start_timer_on_heartbeat = 1;
830 return nonseekable_open(ino, filep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Corey Minyarde8b33612005-09-06 15:18:45 -0700832 default:
833 return (-ENODEV);
Corey Minyard36c7dc42008-04-29 01:01:12 -0700834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
837static unsigned int ipmi_poll(struct file *file, poll_table *wait)
838{
839 unsigned int mask = 0;
Corey Minyard36c7dc42008-04-29 01:01:12 -0700840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 poll_wait(file, &read_q, wait);
842
843 spin_lock(&ipmi_read_lock);
844 if (data_to_read)
845 mask |= (POLLIN | POLLRDNORM);
846 spin_unlock(&ipmi_read_lock);
847
848 return mask;
849}
850
851static int ipmi_fasync(int fd, struct file *file, int on)
852{
853 int result;
854
855 result = fasync_helper(fd, file, on, &fasync_q);
856
857 return (result);
858}
859
860static int ipmi_close(struct inode *ino, struct file *filep)
861{
Corey Minyard8a3628d2006-03-31 02:30:40 -0800862 if (iminor(ino) == WATCHDOG_MINOR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (expect_close == 42) {
864 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
865 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 } else {
Corey Minyard8a3628d2006-03-31 02:30:40 -0800867 printk(KERN_CRIT PFX
868 "Unexpected close, not stopping watchdog!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 ipmi_heartbeat();
870 }
Corey Minyardec26d792005-05-01 08:59:11 -0700871 clear_bit(0, &ipmi_wdog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
Corey Minyard36c7dc42008-04-29 01:01:12 -0700874 ipmi_fasync(-1, filep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 expect_close = 0;
876
877 return 0;
878}
879
Arjan van de Ven62322d22006-07-03 00:24:21 -0700880static const struct file_operations ipmi_wdog_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 .owner = THIS_MODULE,
882 .read = ipmi_read,
883 .poll = ipmi_poll,
884 .write = ipmi_write,
885 .ioctl = ipmi_ioctl,
886 .open = ipmi_open,
887 .release = ipmi_close,
888 .fasync = ipmi_fasync,
889};
890
891static struct miscdevice ipmi_wdog_miscdev = {
892 .minor = WATCHDOG_MINOR,
893 .name = "watchdog",
894 .fops = &ipmi_wdog_fops
895};
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897static void ipmi_wdog_msg_handler(struct ipmi_recv_msg *msg,
898 void *handler_data)
899{
900 if (msg->msg.data[0] != 0) {
901 printk(KERN_ERR PFX "response: Error %x on cmd %x\n",
902 msg->msg.data[0],
903 msg->msg.cmd);
904 }
Corey Minyard36c7dc42008-04-29 01:01:12 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 ipmi_free_recv_msg(msg);
907}
908
909static void ipmi_wdog_pretimeout_handler(void *handler_data)
910{
911 if (preaction_val != WDOG_PRETIMEOUT_NONE) {
Corey Minyardb3856762005-11-07 01:00:05 -0800912 if (preop_val == WDOG_PREOP_PANIC) {
913 if (atomic_inc_and_test(&preop_panic_excl))
914 panic("Watchdog pre-timeout");
915 } else if (preop_val == WDOG_PREOP_GIVE_DATA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 spin_lock(&ipmi_read_lock);
917 data_to_read = 1;
918 wake_up_interruptible(&read_q);
919 kill_fasync(&fasync_q, SIGIO, POLL_IN);
920
921 spin_unlock(&ipmi_read_lock);
922 }
923 }
924
Corey Minyard36c7dc42008-04-29 01:01:12 -0700925 /*
926 * On some machines, the heartbeat will give an error and not
927 * work unless we re-enable the timer. So do so.
928 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 pretimeout_since_last_heartbeat = 1;
930}
931
Corey Minyard36c7dc42008-04-29 01:01:12 -0700932static struct ipmi_user_hndl ipmi_hndlrs = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 .ipmi_recv_hndl = ipmi_wdog_msg_handler,
934 .ipmi_watchdog_pretimeout = ipmi_wdog_pretimeout_handler
935};
936
937static void ipmi_register_watchdog(int ipmi_intf)
938{
939 int rv = -EBUSY;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (watchdog_user)
942 goto out;
943
Corey Minyardb2c03942006-12-06 20:41:00 -0800944 if ((ifnum_to_use >= 0) && (ifnum_to_use != ipmi_intf))
945 goto out;
946
947 watchdog_ifnum = ipmi_intf;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 rv = ipmi_create_user(ipmi_intf, &ipmi_hndlrs, NULL, &watchdog_user);
950 if (rv < 0) {
951 printk(KERN_CRIT PFX "Unable to register with ipmi\n");
952 goto out;
953 }
954
955 ipmi_get_version(watchdog_user,
956 &ipmi_version_major,
957 &ipmi_version_minor);
958
959 rv = misc_register(&ipmi_wdog_miscdev);
960 if (rv < 0) {
961 ipmi_destroy_user(watchdog_user);
962 watchdog_user = NULL;
963 printk(KERN_CRIT PFX "Unable to register misc device\n");
964 }
965
Corey Minyard612b5a82007-10-18 03:07:10 -0700966#ifdef HAVE_DIE_NMI
967 if (nmi_handler_registered) {
968 int old_pretimeout = pretimeout;
969 int old_timeout = timeout;
970 int old_preop_val = preop_val;
971
Corey Minyard36c7dc42008-04-29 01:01:12 -0700972 /*
973 * Set the pretimeout to go off in a second and give
974 * ourselves plenty of time to stop the timer.
975 */
Corey Minyard612b5a82007-10-18 03:07:10 -0700976 ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
977 preop_val = WDOG_PREOP_NONE; /* Make sure nothing happens */
978 pretimeout = 99;
979 timeout = 100;
980
981 testing_nmi = 1;
982
983 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
984 if (rv) {
985 printk(KERN_WARNING PFX "Error starting timer to"
986 " test NMI: 0x%x. The NMI pretimeout will"
987 " likely not work\n", rv);
988 rv = 0;
989 goto out_restore;
990 }
991
992 msleep(1500);
993
994 if (testing_nmi != 2) {
995 printk(KERN_WARNING PFX "IPMI NMI didn't seem to"
996 " occur. The NMI pretimeout will"
997 " likely not work\n");
998 }
Corey Minyard36c7dc42008-04-29 01:01:12 -0700999 out_restore:
Corey Minyard612b5a82007-10-18 03:07:10 -07001000 testing_nmi = 0;
1001 preop_val = old_preop_val;
1002 pretimeout = old_pretimeout;
1003 timeout = old_timeout;
1004 }
1005#endif
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if ((start_now) && (rv == 0)) {
1009 /* Run from startup, so start the timer now. */
1010 start_now = 0; /* Disable this function after first startup. */
1011 ipmi_watchdog_state = action_val;
1012 ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
1013 printk(KERN_INFO PFX "Starting now!\n");
Corey Minyard612b5a82007-10-18 03:07:10 -07001014 } else {
1015 /* Stop the timer now. */
1016 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
1017 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019}
1020
Corey Minyardb2c03942006-12-06 20:41:00 -08001021static void ipmi_unregister_watchdog(int ipmi_intf)
1022{
1023 int rv;
1024
Corey Minyardb2c03942006-12-06 20:41:00 -08001025 if (!watchdog_user)
1026 goto out;
1027
1028 if (watchdog_ifnum != ipmi_intf)
1029 goto out;
1030
1031 /* Make sure no one can call us any more. */
1032 misc_deregister(&ipmi_wdog_miscdev);
1033
Corey Minyard36c7dc42008-04-29 01:01:12 -07001034 /*
1035 * Wait to make sure the message makes it out. The lower layer has
1036 * pointers to our buffers, we want to make sure they are done before
1037 * we release our memory.
1038 */
Corey Minyardb2c03942006-12-06 20:41:00 -08001039 while (atomic_read(&set_timeout_tofree))
1040 schedule_timeout_uninterruptible(1);
1041
1042 /* Disconnect from IPMI. */
1043 rv = ipmi_destroy_user(watchdog_user);
1044 if (rv) {
1045 printk(KERN_WARNING PFX "error unlinking from IPMI: %d\n",
1046 rv);
1047 }
1048 watchdog_user = NULL;
1049
1050 out:
Corey Minyardf8fbcd32007-10-18 03:07:08 -07001051 return;
Corey Minyardb2c03942006-12-06 20:41:00 -08001052}
1053
Corey Minyard612b5a82007-10-18 03:07:10 -07001054#ifdef HAVE_DIE_NMI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055static int
Corey Minyard612b5a82007-10-18 03:07:10 -07001056ipmi_nmi(struct notifier_block *self, unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
Corey Minyard612b5a82007-10-18 03:07:10 -07001058 struct die_args *args = data;
1059
1060 if (val != DIE_NMI)
1061 return NOTIFY_OK;
1062
1063 /* Hack, if it's a memory or I/O error, ignore it. */
1064 if (args->err & 0xc0)
1065 return NOTIFY_OK;
1066
1067 /*
1068 * If we get here, it's an NMI that's not a memory or I/O
1069 * error. We can't truly tell if it's from IPMI or not
1070 * without sending a message, and sending a message is almost
1071 * impossible because of locking.
1072 */
1073
1074 if (testing_nmi) {
1075 testing_nmi = 2;
1076 return NOTIFY_STOP;
1077 }
1078
Corey Minyard36c7dc42008-04-29 01:01:12 -07001079 /* If we are not expecting a timeout, ignore it. */
Corey Minyard8f05ee92005-09-06 15:18:39 -07001080 if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
Corey Minyard612b5a82007-10-18 03:07:10 -07001081 return NOTIFY_OK;
1082
1083 if (preaction_val != WDOG_PRETIMEOUT_NMI)
1084 return NOTIFY_OK;
Corey Minyard8f05ee92005-09-06 15:18:39 -07001085
Corey Minyard36c7dc42008-04-29 01:01:12 -07001086 /*
1087 * If no one else handled the NMI, we assume it was the IPMI
1088 * watchdog.
1089 */
Corey Minyard612b5a82007-10-18 03:07:10 -07001090 if (preop_val == WDOG_PREOP_PANIC) {
Corey Minyard8f05ee92005-09-06 15:18:39 -07001091 /* On some machines, the heartbeat will give
1092 an error and not work unless we re-enable
1093 the timer. So do so. */
1094 pretimeout_since_last_heartbeat = 1;
Corey Minyardb3856762005-11-07 01:00:05 -08001095 if (atomic_inc_and_test(&preop_panic_excl))
1096 panic(PFX "pre-timeout");
Corey Minyard8f05ee92005-09-06 15:18:39 -07001097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Corey Minyard612b5a82007-10-18 03:07:10 -07001099 return NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Corey Minyard612b5a82007-10-18 03:07:10 -07001102static struct notifier_block ipmi_nmi_handler = {
1103 .notifier_call = ipmi_nmi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104};
1105#endif
1106
1107static int wdog_reboot_handler(struct notifier_block *this,
1108 unsigned long code,
1109 void *unused)
1110{
Corey Minyard36c7dc42008-04-29 01:01:12 -07001111 static int reboot_event_handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if ((watchdog_user) && (!reboot_event_handled)) {
1114 /* Make sure we only do this once. */
1115 reboot_event_handled = 1;
1116
Corey Minyardfcfa4722007-10-18 03:07:09 -07001117 if (code == SYS_POWER_OFF || code == SYS_HALT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* Disable the WDT if we are shutting down. */
1119 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
1120 panic_halt_ipmi_set_timeout();
Corey Minyard96febe92006-06-28 04:26:55 -07001121 } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 /* Set a long timer to let the reboot happens, but
Corey Minyard96febe92006-06-28 04:26:55 -07001123 reboot if it hangs, but only if the watchdog
1124 timer was already running. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 timeout = 120;
1126 pretimeout = 0;
1127 ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
1128 panic_halt_ipmi_set_timeout();
1129 }
1130 }
1131 return NOTIFY_OK;
1132}
1133
1134static struct notifier_block wdog_reboot_notifier = {
1135 .notifier_call = wdog_reboot_handler,
1136 .next = NULL,
1137 .priority = 0
1138};
1139
1140static int wdog_panic_handler(struct notifier_block *this,
1141 unsigned long event,
1142 void *unused)
1143{
Corey Minyard36c7dc42008-04-29 01:01:12 -07001144 static int panic_event_handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Corey Minyard96febe92006-06-28 04:26:55 -07001146 /* On a panic, if we have a panic timeout, make sure to extend
1147 the watchdog timer to a reasonable value to complete the
1148 panic, if the watchdog timer is running. Plus the
1149 pretimeout is meaningless at panic time. */
1150 if (watchdog_user && !panic_event_handled &&
1151 ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
1152 /* Make sure we do this only once. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 panic_event_handled = 1;
Corey Minyard36c7dc42008-04-29 01:01:12 -07001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 timeout = 255;
1156 pretimeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 panic_halt_ipmi_set_timeout();
1158 }
1159
1160 return NOTIFY_OK;
1161}
1162
1163static struct notifier_block wdog_panic_notifier = {
1164 .notifier_call = wdog_panic_handler,
1165 .next = NULL,
1166 .priority = 150 /* priority: INT_MAX >= x >= 0 */
1167};
1168
1169
Corey Minyard50c812b2006-03-26 01:37:21 -08001170static void ipmi_new_smi(int if_num, struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 ipmi_register_watchdog(if_num);
1173}
1174
1175static void ipmi_smi_gone(int if_num)
1176{
Corey Minyardb2c03942006-12-06 20:41:00 -08001177 ipmi_unregister_watchdog(if_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Corey Minyard36c7dc42008-04-29 01:01:12 -07001180static struct ipmi_smi_watcher smi_watcher = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 .owner = THIS_MODULE,
1182 .new_smi = ipmi_new_smi,
1183 .smi_gone = ipmi_smi_gone
1184};
1185
Corey Minyardcc4673e2005-11-07 00:59:57 -08001186static int action_op(const char *inval, char *outval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Corey Minyardcc4673e2005-11-07 00:59:57 -08001188 if (outval)
1189 strcpy(outval, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Corey Minyardcc4673e2005-11-07 00:59:57 -08001191 if (!inval)
1192 return 0;
1193
1194 if (strcmp(inval, "reset") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 action_val = WDOG_TIMEOUT_RESET;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001196 else if (strcmp(inval, "none") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 action_val = WDOG_TIMEOUT_NONE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001198 else if (strcmp(inval, "power_cycle") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 action_val = WDOG_TIMEOUT_POWER_CYCLE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001200 else if (strcmp(inval, "power_off") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 action_val = WDOG_TIMEOUT_POWER_DOWN;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001202 else
1203 return -EINVAL;
1204 strcpy(action, inval);
1205 return 0;
1206}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Corey Minyardcc4673e2005-11-07 00:59:57 -08001208static int preaction_op(const char *inval, char *outval)
1209{
1210 if (outval)
1211 strcpy(outval, preaction);
1212
1213 if (!inval)
1214 return 0;
1215
1216 if (strcmp(inval, "pre_none") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 preaction_val = WDOG_PRETIMEOUT_NONE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001218 else if (strcmp(inval, "pre_smi") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 preaction_val = WDOG_PRETIMEOUT_SMI;
Corey Minyard612b5a82007-10-18 03:07:10 -07001220#ifdef HAVE_DIE_NMI
Corey Minyardcc4673e2005-11-07 00:59:57 -08001221 else if (strcmp(inval, "pre_nmi") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 preaction_val = WDOG_PRETIMEOUT_NMI;
1223#endif
Corey Minyardcc4673e2005-11-07 00:59:57 -08001224 else if (strcmp(inval, "pre_int") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 preaction_val = WDOG_PRETIMEOUT_MSG_INT;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001226 else
1227 return -EINVAL;
1228 strcpy(preaction, inval);
1229 return 0;
1230}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Corey Minyardcc4673e2005-11-07 00:59:57 -08001232static int preop_op(const char *inval, char *outval)
1233{
1234 if (outval)
1235 strcpy(outval, preop);
1236
1237 if (!inval)
1238 return 0;
1239
1240 if (strcmp(inval, "preop_none") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 preop_val = WDOG_PREOP_NONE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001242 else if (strcmp(inval, "preop_panic") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 preop_val = WDOG_PREOP_PANIC;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001244 else if (strcmp(inval, "preop_give_data") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 preop_val = WDOG_PREOP_GIVE_DATA;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001246 else
1247 return -EINVAL;
1248 strcpy(preop, inval);
1249 return 0;
1250}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Corey Minyardcc4673e2005-11-07 00:59:57 -08001252static void check_parms(void)
1253{
Corey Minyard612b5a82007-10-18 03:07:10 -07001254#ifdef HAVE_DIE_NMI
Corey Minyardcc4673e2005-11-07 00:59:57 -08001255 int do_nmi = 0;
1256 int rv;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (preaction_val == WDOG_PRETIMEOUT_NMI) {
Corey Minyardcc4673e2005-11-07 00:59:57 -08001259 do_nmi = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (preop_val == WDOG_PREOP_GIVE_DATA) {
1261 printk(KERN_WARNING PFX "Pretimeout op is to give data"
1262 " but NMI pretimeout is enabled, setting"
1263 " pretimeout op to none\n");
Corey Minyardcc4673e2005-11-07 00:59:57 -08001264 preop_op("preop_none", NULL);
1265 do_nmi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
Corey Minyardcc4673e2005-11-07 00:59:57 -08001268 if (do_nmi && !nmi_handler_registered) {
Corey Minyard612b5a82007-10-18 03:07:10 -07001269 rv = register_die_notifier(&ipmi_nmi_handler);
Corey Minyardcc4673e2005-11-07 00:59:57 -08001270 if (rv) {
1271 printk(KERN_WARNING PFX
1272 "Can't register nmi handler\n");
1273 return;
1274 } else
1275 nmi_handler_registered = 1;
1276 } else if (!do_nmi && nmi_handler_registered) {
Corey Minyard612b5a82007-10-18 03:07:10 -07001277 unregister_die_notifier(&ipmi_nmi_handler);
Corey Minyardcc4673e2005-11-07 00:59:57 -08001278 nmi_handler_registered = 0;
1279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280#endif
Corey Minyardcc4673e2005-11-07 00:59:57 -08001281}
1282
1283static int __init ipmi_wdog_init(void)
1284{
1285 int rv;
1286
1287 if (action_op(action, NULL)) {
1288 action_op("reset", NULL);
1289 printk(KERN_INFO PFX "Unknown action '%s', defaulting to"
1290 " reset\n", action);
1291 }
1292
1293 if (preaction_op(preaction, NULL)) {
1294 preaction_op("pre_none", NULL);
1295 printk(KERN_INFO PFX "Unknown preaction '%s', defaulting to"
1296 " none\n", preaction);
1297 }
1298
1299 if (preop_op(preop, NULL)) {
1300 preop_op("preop_none", NULL);
1301 printk(KERN_INFO PFX "Unknown preop '%s', defaulting to"
1302 " none\n", preop);
1303 }
1304
1305 check_parms();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Corey Minyardb2c03942006-12-06 20:41:00 -08001307 register_reboot_notifier(&wdog_reboot_notifier);
1308 atomic_notifier_chain_register(&panic_notifier_list,
1309 &wdog_panic_notifier);
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 rv = ipmi_smi_watcher_register(&smi_watcher);
1312 if (rv) {
Corey Minyard612b5a82007-10-18 03:07:10 -07001313#ifdef HAVE_DIE_NMI
1314 if (nmi_handler_registered)
1315 unregister_die_notifier(&ipmi_nmi_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316#endif
Corey Minyardb2c03942006-12-06 20:41:00 -08001317 atomic_notifier_chain_unregister(&panic_notifier_list,
1318 &wdog_panic_notifier);
1319 unregister_reboot_notifier(&wdog_reboot_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 printk(KERN_WARNING PFX "can't register smi watcher\n");
1321 return rv;
1322 }
1323
Corey Minyard1fdd75b2005-09-06 15:18:42 -07001324 printk(KERN_INFO PFX "driver initialized\n");
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return 0;
1327}
1328
Corey Minyardb2c03942006-12-06 20:41:00 -08001329static void __exit ipmi_wdog_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Corey Minyardb2c03942006-12-06 20:41:00 -08001331 ipmi_smi_watcher_unregister(&smi_watcher);
1332 ipmi_unregister_watchdog(watchdog_ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Corey Minyard612b5a82007-10-18 03:07:10 -07001334#ifdef HAVE_DIE_NMI
Corey Minyardcc4673e2005-11-07 00:59:57 -08001335 if (nmi_handler_registered)
Corey Minyard612b5a82007-10-18 03:07:10 -07001336 unregister_die_notifier(&ipmi_nmi_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337#endif
1338
Alan Sterne041c682006-03-27 01:16:30 -08001339 atomic_notifier_chain_unregister(&panic_notifier_list,
Corey Minyardb2c03942006-12-06 20:41:00 -08001340 &wdog_panic_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 unregister_reboot_notifier(&wdog_reboot_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343module_exit(ipmi_wdog_exit);
1344module_init(ipmi_wdog_init);
1345MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07001346MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
1347MODULE_DESCRIPTION("watchdog timer based upon the IPMI interface.");