blob: 0e6df289cb46e8202df710903278ebe6c1fb2a0c [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>
38#include <linux/watchdog.h>
39#include <linux/miscdevice.h>
40#include <linux/init.h>
Corey Minyardd6dfd132006-03-31 02:30:41 -080041#include <linux/completion.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070042#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/rwsem.h>
44#include <linux/errno.h>
45#include <asm/uaccess.h>
46#include <linux/notifier.h>
47#include <linux/nmi.h>
48#include <linux/reboot.h>
49#include <linux/wait.h>
50#include <linux/poll.h>
Corey Minyardcc4673e2005-11-07 00:59:57 -080051#include <linux/string.h>
52#include <linux/ctype.h>
Corey Minyard612b5a82007-10-18 03:07:10 -070053#include <linux/delay.h>
Corey Minyardb3856762005-11-07 01:00:05 -080054#include <asm/atomic.h>
Corey Minyardf64da952007-05-08 00:23:58 -070055
Corey Minyard612b5a82007-10-18 03:07:10 -070056#ifdef CONFIG_X86
Corey Minyard36c7dc42008-04-29 01:01:12 -070057/*
58 * This is ugly, but I've determined that x86 is the only architecture
59 * that can reasonably support the IPMI NMI watchdog timeout at this
60 * time. If another architecture adds this capability somehow, it
61 * will have to be a somewhat different mechanism and I have no idea
62 * how it will work. So in the unlikely event that another
63 * architecture supports this, we can figure out a good generic
64 * mechanism for it at that time.
65 */
Corey Minyard612b5a82007-10-18 03:07:10 -070066#include <asm/kdebug.h>
67#define HAVE_DIE_NMI
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#endif
69
70#define PFX "IPMI Watchdog: "
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/*
73 * The IPMI command/response information for the watchdog timer.
74 */
75
76/* values for byte 1 of the set command, byte 2 of the get response. */
77#define WDOG_DONT_LOG (1 << 7)
78#define WDOG_DONT_STOP_ON_SET (1 << 6)
79#define WDOG_SET_TIMER_USE(byte, use) \
80 byte = ((byte) & 0xf8) | ((use) & 0x7)
81#define WDOG_GET_TIMER_USE(byte) ((byte) & 0x7)
82#define WDOG_TIMER_USE_BIOS_FRB2 1
83#define WDOG_TIMER_USE_BIOS_POST 2
84#define WDOG_TIMER_USE_OS_LOAD 3
85#define WDOG_TIMER_USE_SMS_OS 4
86#define WDOG_TIMER_USE_OEM 5
87
88/* values for byte 2 of the set command, byte 3 of the get response. */
89#define WDOG_SET_PRETIMEOUT_ACT(byte, use) \
90 byte = ((byte) & 0x8f) | (((use) & 0x7) << 4)
91#define WDOG_GET_PRETIMEOUT_ACT(byte) (((byte) >> 4) & 0x7)
92#define WDOG_PRETIMEOUT_NONE 0
93#define WDOG_PRETIMEOUT_SMI 1
94#define WDOG_PRETIMEOUT_NMI 2
95#define WDOG_PRETIMEOUT_MSG_INT 3
96
97/* Operations that can be performed on a pretimout. */
98#define WDOG_PREOP_NONE 0
99#define WDOG_PREOP_PANIC 1
Corey Minyard36c7dc42008-04-29 01:01:12 -0700100/* Cause data to be available to read. Doesn't work in NMI mode. */
101#define WDOG_PREOP_GIVE_DATA 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* Actions to perform on a full timeout. */
104#define WDOG_SET_TIMEOUT_ACT(byte, use) \
105 byte = ((byte) & 0xf8) | ((use) & 0x7)
106#define WDOG_GET_TIMEOUT_ACT(byte) ((byte) & 0x7)
107#define WDOG_TIMEOUT_NONE 0
108#define WDOG_TIMEOUT_RESET 1
109#define WDOG_TIMEOUT_POWER_DOWN 2
110#define WDOG_TIMEOUT_POWER_CYCLE 3
111
Corey Minyard36c7dc42008-04-29 01:01:12 -0700112/*
113 * Byte 3 of the get command, byte 4 of the get response is the
114 * pre-timeout in seconds.
115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/* Bits for setting byte 4 of the set command, byte 5 of the get response. */
118#define WDOG_EXPIRE_CLEAR_BIOS_FRB2 (1 << 1)
119#define WDOG_EXPIRE_CLEAR_BIOS_POST (1 << 2)
120#define WDOG_EXPIRE_CLEAR_OS_LOAD (1 << 3)
121#define WDOG_EXPIRE_CLEAR_SMS_OS (1 << 4)
122#define WDOG_EXPIRE_CLEAR_OEM (1 << 5)
123
Corey Minyard36c7dc42008-04-29 01:01:12 -0700124/*
125 * Setting/getting the watchdog timer value. This is for bytes 5 and
126 * 6 (the timeout time) of the set command, and bytes 6 and 7 (the
127 * timeout time) and 8 and 9 (the current countdown value) of the
128 * response. The timeout value is given in seconds (in the command it
129 * is 100ms intervals).
130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define WDOG_SET_TIMEOUT(byte1, byte2, val) \
132 (byte1) = (((val) * 10) & 0xff), (byte2) = (((val) * 10) >> 8)
133#define WDOG_GET_TIMEOUT(byte1, byte2) \
134 (((byte1) | ((byte2) << 8)) / 10)
135
136#define IPMI_WDOG_RESET_TIMER 0x22
137#define IPMI_WDOG_SET_TIMER 0x24
138#define IPMI_WDOG_GET_TIMER 0x25
139
140/* These are here until the real ones get into the watchdog.h interface. */
141#ifndef WDIOC_GETTIMEOUT
142#define WDIOC_GETTIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 20, int)
143#endif
144#ifndef WDIOC_SET_PRETIMEOUT
145#define WDIOC_SET_PRETIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 21, int)
146#endif
147#ifndef WDIOC_GET_PRETIMEOUT
148#define WDIOC_GET_PRETIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 22, int)
149#endif
150
Andrey Panin4bfdf372005-07-27 11:43:58 -0700151static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800153static ipmi_user_t watchdog_user;
Corey Minyardb2c03942006-12-06 20:41:00 -0800154static int watchdog_ifnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/* Default the timeout to 10 seconds. */
157static int timeout = 10;
158
159/* The pre-timeout is disabled by default. */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800160static int pretimeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/* Default action is to reset the board on a timeout. */
163static unsigned char action_val = WDOG_TIMEOUT_RESET;
164
165static char action[16] = "reset";
166
167static unsigned char preaction_val = WDOG_PRETIMEOUT_NONE;
168
169static char preaction[16] = "pre_none";
170
171static unsigned char preop_val = WDOG_PREOP_NONE;
172
173static char preop[16] = "preop_none";
174static DEFINE_SPINLOCK(ipmi_read_lock);
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800175static char data_to_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176static DECLARE_WAIT_QUEUE_HEAD(read_q);
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800177static struct fasync_struct *fasync_q;
178static char pretimeout_since_last_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static char expect_close;
180
Corey Minyardb2c03942006-12-06 20:41:00 -0800181static int ifnum_to_use = -1;
182
Corey Minyardcc4673e2005-11-07 00:59:57 -0800183/* Parameters to ipmi_set_timeout */
184#define IPMI_SET_TIMEOUT_NO_HB 0
185#define IPMI_SET_TIMEOUT_HB_IF_NECESSARY 1
186#define IPMI_SET_TIMEOUT_FORCE_HB 2
187
188static int ipmi_set_timeout(int do_heartbeat);
Corey Minyardb2c03942006-12-06 20:41:00 -0800189static void ipmi_register_watchdog(int ipmi_intf);
190static void ipmi_unregister_watchdog(int ipmi_intf);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800191
Corey Minyard36c7dc42008-04-29 01:01:12 -0700192/*
193 * If true, the driver will start running as soon as it is configured
194 * and ready.
195 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800196static int start_now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Corey Minyardcc4673e2005-11-07 00:59:57 -0800198static int set_param_int(const char *val, struct kernel_param *kp)
199{
200 char *endp;
201 int l;
202 int rv = 0;
203
204 if (!val)
205 return -EINVAL;
206 l = simple_strtoul(val, &endp, 0);
207 if (endp == val)
208 return -EINVAL;
209
Corey Minyardcc4673e2005-11-07 00:59:57 -0800210 *((int *)kp->arg) = l;
211 if (watchdog_user)
212 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800213
214 return rv;
215}
216
217static int get_param_int(char *buffer, struct kernel_param *kp)
218{
219 return sprintf(buffer, "%i", *((int *)kp->arg));
220}
221
222typedef int (*action_fn)(const char *intval, char *outval);
223
224static int action_op(const char *inval, char *outval);
225static int preaction_op(const char *inval, char *outval);
226static int preop_op(const char *inval, char *outval);
227static void check_parms(void);
228
229static int set_param_str(const char *val, struct kernel_param *kp)
230{
231 action_fn fn = (action_fn) kp->arg;
232 int rv = 0;
Sebastien Dugué43cdff92006-12-29 16:46:53 -0800233 char valcp[16];
234 char *s;
Corey Minyardcc4673e2005-11-07 00:59:57 -0800235
Sebastien Dugué43cdff92006-12-29 16:46:53 -0800236 strncpy(valcp, val, 16);
237 valcp[15] = '\0';
Pekka Enberg66f969d2006-06-23 02:05:45 -0700238
Sebastien Dugué43cdff92006-12-29 16:46:53 -0800239 s = strstrip(valcp);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800240
Pekka Enberg66f969d2006-06-23 02:05:45 -0700241 rv = fn(s, NULL);
Corey Minyardcc4673e2005-11-07 00:59:57 -0800242 if (rv)
Corey Minyardf8fbcd32007-10-18 03:07:08 -0700243 goto out;
Corey Minyardcc4673e2005-11-07 00:59:57 -0800244
245 check_parms();
246 if (watchdog_user)
247 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
248
Corey Minyardf8fbcd32007-10-18 03:07:08 -0700249 out:
Corey Minyardcc4673e2005-11-07 00:59:57 -0800250 return rv;
251}
252
253static int get_param_str(char *buffer, struct kernel_param *kp)
254{
255 action_fn fn = (action_fn) kp->arg;
256 int rv;
257
258 rv = fn(NULL, buffer);
259 if (rv)
260 return rv;
261 return strlen(buffer);
262}
263
Corey Minyardb2c03942006-12-06 20:41:00 -0800264
265static int set_param_wdog_ifnum(const char *val, struct kernel_param *kp)
266{
267 int rv = param_set_int(val, kp);
268 if (rv)
269 return rv;
270 if ((ifnum_to_use < 0) || (ifnum_to_use == watchdog_ifnum))
271 return 0;
272
273 ipmi_unregister_watchdog(watchdog_ifnum);
274 ipmi_register_watchdog(ifnum_to_use);
275 return 0;
276}
277
278module_param_call(ifnum_to_use, set_param_wdog_ifnum, get_param_int,
279 &ifnum_to_use, 0644);
280MODULE_PARM_DESC(ifnum_to_use, "The interface number to use for the watchdog "
281 "timer. Setting to -1 defaults to the first registered "
282 "interface");
283
Corey Minyardcc4673e2005-11-07 00:59:57 -0800284module_param_call(timeout, set_param_int, get_param_int, &timeout, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285MODULE_PARM_DESC(timeout, "Timeout value in seconds.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800286
287module_param_call(pretimeout, set_param_int, get_param_int, &pretimeout, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288MODULE_PARM_DESC(pretimeout, "Pretimeout value in seconds.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800289
290module_param_call(action, set_param_str, get_param_str, action_op, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291MODULE_PARM_DESC(action, "Timeout action. One of: "
292 "reset, none, power_cycle, power_off.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800293
294module_param_call(preaction, set_param_str, get_param_str, preaction_op, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295MODULE_PARM_DESC(preaction, "Pretimeout action. One of: "
296 "pre_none, pre_smi, pre_nmi, pre_int.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800297
298module_param_call(preop, set_param_str, get_param_str, preop_op, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299MODULE_PARM_DESC(preop, "Pretimeout driver operation. One of: "
300 "preop_none, preop_panic, preop_give_data.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800301
Corey Minyardb2c03942006-12-06 20:41:00 -0800302module_param(start_now, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303MODULE_PARM_DESC(start_now, "Set to 1 to start the watchdog as"
304 "soon as the driver is loaded.");
Corey Minyardcc4673e2005-11-07 00:59:57 -0800305
306module_param(nowayout, int, 0644);
Corey Minyardb2c03942006-12-06 20:41:00 -0800307MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
308 "(default=CONFIG_WATCHDOG_NOWAYOUT)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310/* Default state of the timer. */
311static unsigned char ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
312
313/* If shutting down via IPMI, we ignore the heartbeat. */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800314static int ipmi_ignore_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316/* Is someone using the watchdog? Only one user is allowed. */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800317static unsigned long ipmi_wdog_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Corey Minyard36c7dc42008-04-29 01:01:12 -0700319/*
320 * If set to 1, the heartbeat command will set the state to reset and
321 * start the timer. The timer doesn't normally run when the driver is
322 * first opened until the heartbeat is set the first time, this
323 * variable is used to accomplish this.
324 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800325static int ipmi_start_timer_on_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327/* IPMI version of the BMC. */
328static unsigned char ipmi_version_major;
329static unsigned char ipmi_version_minor;
330
Corey Minyardb3856762005-11-07 01:00:05 -0800331/* If a pretimeout occurs, this is used to allow only one panic to happen. */
332static atomic_t preop_panic_excl = ATOMIC_INIT(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Corey Minyard612b5a82007-10-18 03:07:10 -0700334#ifdef HAVE_DIE_NMI
335static int testing_nmi;
336static int nmi_handler_registered;
337#endif
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static int ipmi_heartbeat(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Corey Minyard36c7dc42008-04-29 01:01:12 -0700341/*
342 * We use a mutex to make sure that only one thing can send a set
343 * timeout at one time, because we only have one copy of the data.
344 * The mutex is claimed when the set_timeout is sent and freed
345 * when both messages are free.
346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static atomic_t set_timeout_tofree = ATOMIC_INIT(0);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800348static DEFINE_MUTEX(set_timeout_lock);
349static DECLARE_COMPLETION(set_timeout_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350static void set_timeout_free_smi(struct ipmi_smi_msg *msg)
351{
352 if (atomic_dec_and_test(&set_timeout_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800353 complete(&set_timeout_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355static void set_timeout_free_recv(struct ipmi_recv_msg *msg)
356{
357 if (atomic_dec_and_test(&set_timeout_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800358 complete(&set_timeout_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
Corey Minyard36c7dc42008-04-29 01:01:12 -0700360static struct ipmi_smi_msg set_timeout_smi_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 .done = set_timeout_free_smi
362};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700363static struct ipmi_recv_msg set_timeout_recv_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 .done = set_timeout_free_recv
365};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static int i_ipmi_set_timeout(struct ipmi_smi_msg *smi_msg,
368 struct ipmi_recv_msg *recv_msg,
369 int *send_heartbeat_now)
370{
371 struct kernel_ipmi_msg msg;
372 unsigned char data[6];
373 int rv;
374 struct ipmi_system_interface_addr addr;
375 int hbnow = 0;
376
377
Corey Minyard612b5a82007-10-18 03:07:10 -0700378 /* These can be cleared as we are setting the timeout. */
379 pretimeout_since_last_heartbeat = 0;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 data[0] = 0;
382 WDOG_SET_TIMER_USE(data[0], WDOG_TIMER_USE_SMS_OS);
383
384 if ((ipmi_version_major > 1)
Corey Minyard36c7dc42008-04-29 01:01:12 -0700385 || ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* This is an IPMI 1.5-only feature. */
387 data[0] |= WDOG_DONT_STOP_ON_SET;
388 } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700389 /*
390 * In ipmi 1.0, setting the timer stops the watchdog, we
391 * need to start it back up again.
392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 hbnow = 1;
394 }
395
396 data[1] = 0;
397 WDOG_SET_TIMEOUT_ACT(data[1], ipmi_watchdog_state);
Corey Minyard8f05ee92005-09-06 15:18:39 -0700398 if ((pretimeout > 0) && (ipmi_watchdog_state != WDOG_TIMEOUT_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 WDOG_SET_PRETIMEOUT_ACT(data[1], preaction_val);
400 data[2] = pretimeout;
401 } else {
402 WDOG_SET_PRETIMEOUT_ACT(data[1], WDOG_PRETIMEOUT_NONE);
403 data[2] = 0; /* No pretimeout. */
404 }
405 data[3] = 0;
406 WDOG_SET_TIMEOUT(data[4], data[5], timeout);
407
408 addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
409 addr.channel = IPMI_BMC_CHANNEL;
410 addr.lun = 0;
411
412 msg.netfn = 0x06;
413 msg.cmd = IPMI_WDOG_SET_TIMER;
414 msg.data = data;
415 msg.data_len = sizeof(data);
416 rv = ipmi_request_supply_msgs(watchdog_user,
417 (struct ipmi_addr *) &addr,
418 0,
419 &msg,
420 NULL,
421 smi_msg,
422 recv_msg,
423 1);
424 if (rv) {
425 printk(KERN_WARNING PFX "set timeout error: %d\n",
426 rv);
427 }
428
429 if (send_heartbeat_now)
430 *send_heartbeat_now = hbnow;
431
432 return rv;
433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435static int ipmi_set_timeout(int do_heartbeat)
436{
437 int send_heartbeat_now;
438 int rv;
439
440
441 /* We can only send one of these at a time. */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800442 mutex_lock(&set_timeout_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 atomic_set(&set_timeout_tofree, 2);
445
446 rv = i_ipmi_set_timeout(&set_timeout_smi_msg,
447 &set_timeout_recv_msg,
448 &send_heartbeat_now);
449 if (rv) {
Corey Minyardd6dfd132006-03-31 02:30:41 -0800450 mutex_unlock(&set_timeout_lock);
451 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
Corey Minyardd6dfd132006-03-31 02:30:41 -0800454 wait_for_completion(&set_timeout_wait);
455
Corey Minyard612b5a82007-10-18 03:07:10 -0700456 mutex_unlock(&set_timeout_lock);
457
Corey Minyardd6dfd132006-03-31 02:30:41 -0800458 if ((do_heartbeat == IPMI_SET_TIMEOUT_FORCE_HB)
459 || ((send_heartbeat_now)
460 && (do_heartbeat == IPMI_SET_TIMEOUT_HB_IF_NECESSARY)))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800461 rv = ipmi_heartbeat();
Corey Minyardd6dfd132006-03-31 02:30:41 -0800462
463out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return rv;
465}
466
Corey Minyardfcfa4722007-10-18 03:07:09 -0700467static atomic_t panic_done_count = ATOMIC_INIT(0);
468
469static void panic_smi_free(struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Corey Minyardfcfa4722007-10-18 03:07:09 -0700471 atomic_dec(&panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
Corey Minyardfcfa4722007-10-18 03:07:09 -0700473static void panic_recv_free(struct ipmi_recv_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Corey Minyardfcfa4722007-10-18 03:07:09 -0700475 atomic_dec(&panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
Corey Minyardfcfa4722007-10-18 03:07:09 -0700477
Corey Minyard36c7dc42008-04-29 01:01:12 -0700478static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700479 .done = panic_smi_free
480};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700481static struct ipmi_recv_msg panic_halt_heartbeat_recv_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700482 .done = panic_recv_free
483};
484
485static void panic_halt_ipmi_heartbeat(void)
486{
487 struct kernel_ipmi_msg msg;
488 struct ipmi_system_interface_addr addr;
489 int rv;
490
Corey Minyard36c7dc42008-04-29 01:01:12 -0700491 /*
492 * Don't reset the timer if we have the timer turned off, that
493 * re-enables the watchdog.
494 */
Corey Minyardfcfa4722007-10-18 03:07:09 -0700495 if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
496 return;
497
498 addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
499 addr.channel = IPMI_BMC_CHANNEL;
500 addr.lun = 0;
501
502 msg.netfn = 0x06;
503 msg.cmd = IPMI_WDOG_RESET_TIMER;
504 msg.data = NULL;
505 msg.data_len = 0;
506 rv = ipmi_request_supply_msgs(watchdog_user,
507 (struct ipmi_addr *) &addr,
508 0,
509 &msg,
510 NULL,
511 &panic_halt_heartbeat_smi_msg,
512 &panic_halt_heartbeat_recv_msg,
513 1);
514 if (!rv)
515 atomic_add(2, &panic_done_count);
516}
517
Corey Minyard36c7dc42008-04-29 01:01:12 -0700518static struct ipmi_smi_msg panic_halt_smi_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700519 .done = panic_smi_free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700521static struct ipmi_recv_msg panic_halt_recv_msg = {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700522 .done = panic_recv_free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523};
524
Corey Minyard36c7dc42008-04-29 01:01:12 -0700525/*
526 * Special call, doesn't claim any locks. This is only to be called
527 * at panic or halt time, in run-to-completion mode, when the caller
528 * is the only CPU and the only thing that will be going is these IPMI
529 * calls.
530 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531static void panic_halt_ipmi_set_timeout(void)
532{
533 int send_heartbeat_now;
534 int rv;
535
Corey Minyardfcfa4722007-10-18 03:07:09 -0700536 /* Wait for the messages to be free. */
537 while (atomic_read(&panic_done_count) != 0)
538 ipmi_poll_interface(watchdog_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 rv = i_ipmi_set_timeout(&panic_halt_smi_msg,
540 &panic_halt_recv_msg,
541 &send_heartbeat_now);
542 if (!rv) {
Corey Minyardfcfa4722007-10-18 03:07:09 -0700543 atomic_add(2, &panic_done_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (send_heartbeat_now)
545 panic_halt_ipmi_heartbeat();
Corey Minyardfcfa4722007-10-18 03:07:09 -0700546 } else
547 printk(KERN_WARNING PFX
548 "Unable to extend the watchdog timeout.");
549 while (atomic_read(&panic_done_count) != 0)
550 ipmi_poll_interface(watchdog_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Corey Minyard36c7dc42008-04-29 01:01:12 -0700553/*
554 * We use a mutex to make sure that only one thing can send a
555 * heartbeat at one time, because we only have one copy of the data.
556 * The semaphore is claimed when the set_timeout is sent and freed
557 * when both messages are free.
558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static atomic_t heartbeat_tofree = ATOMIC_INIT(0);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800560static DEFINE_MUTEX(heartbeat_lock);
561static DECLARE_COMPLETION(heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static void heartbeat_free_smi(struct ipmi_smi_msg *msg)
563{
564 if (atomic_dec_and_test(&heartbeat_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800565 complete(&heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567static void heartbeat_free_recv(struct ipmi_recv_msg *msg)
568{
569 if (atomic_dec_and_test(&heartbeat_tofree))
Corey Minyardd6dfd132006-03-31 02:30:41 -0800570 complete(&heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
Corey Minyard36c7dc42008-04-29 01:01:12 -0700572static struct ipmi_smi_msg heartbeat_smi_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 .done = heartbeat_free_smi
574};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700575static struct ipmi_recv_msg heartbeat_recv_msg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 .done = heartbeat_free_recv
577};
Corey Minyard36c7dc42008-04-29 01:01:12 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579static int ipmi_heartbeat(void)
580{
581 struct kernel_ipmi_msg msg;
582 int rv;
583 struct ipmi_system_interface_addr addr;
584
Corey Minyard612b5a82007-10-18 03:07:10 -0700585 if (ipmi_ignore_heartbeat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (ipmi_start_timer_on_heartbeat) {
Linus Torvaldsfaa8b6c2007-05-14 15:24:24 -0700589 ipmi_start_timer_on_heartbeat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 ipmi_watchdog_state = action_val;
591 return ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
592 } else if (pretimeout_since_last_heartbeat) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700593 /*
594 * A pretimeout occurred, make sure we set the timeout.
595 * We don't want to set the action, though, we want to
596 * leave that alone (thus it can't be combined with the
597 * above operation.
598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
600 }
601
Corey Minyardd6dfd132006-03-31 02:30:41 -0800602 mutex_lock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 atomic_set(&heartbeat_tofree, 2);
605
Corey Minyard36c7dc42008-04-29 01:01:12 -0700606 /*
607 * Don't reset the timer if we have the timer turned off, that
608 * re-enables the watchdog.
609 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) {
Corey Minyardd6dfd132006-03-31 02:30:41 -0800611 mutex_unlock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
613 }
614
615 addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
616 addr.channel = IPMI_BMC_CHANNEL;
617 addr.lun = 0;
618
619 msg.netfn = 0x06;
620 msg.cmd = IPMI_WDOG_RESET_TIMER;
621 msg.data = NULL;
622 msg.data_len = 0;
623 rv = ipmi_request_supply_msgs(watchdog_user,
624 (struct ipmi_addr *) &addr,
625 0,
626 &msg,
627 NULL,
628 &heartbeat_smi_msg,
629 &heartbeat_recv_msg,
630 1);
631 if (rv) {
Corey Minyardd6dfd132006-03-31 02:30:41 -0800632 mutex_unlock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 printk(KERN_WARNING PFX "heartbeat failure: %d\n",
634 rv);
635 return rv;
636 }
637
638 /* Wait for the heartbeat to be sent. */
Corey Minyardd6dfd132006-03-31 02:30:41 -0800639 wait_for_completion(&heartbeat_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (heartbeat_recv_msg.msg.data[0] != 0) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700642 /*
643 * Got an error in the heartbeat response. It was already
644 * reported in ipmi_wdog_msg_handler, but we should return
645 * an error here.
646 */
647 rv = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Corey Minyardd6dfd132006-03-31 02:30:41 -0800650 mutex_unlock(&heartbeat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 return rv;
653}
654
Corey Minyard36c7dc42008-04-29 01:01:12 -0700655static struct watchdog_info ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 .options = 0, /* WDIOF_SETTIMEOUT, */
657 .firmware_version = 1,
658 .identity = "IPMI"
659};
660
661static int ipmi_ioctl(struct inode *inode, struct file *file,
662 unsigned int cmd, unsigned long arg)
663{
664 void __user *argp = (void __user *)arg;
665 int i;
666 int val;
667
Corey Minyard36c7dc42008-04-29 01:01:12 -0700668 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 case WDIOC_GETSUPPORT:
670 i = copy_to_user(argp, &ident, sizeof(ident));
671 return i ? -EFAULT : 0;
672
673 case WDIOC_SETTIMEOUT:
674 i = copy_from_user(&val, argp, sizeof(int));
675 if (i)
676 return -EFAULT;
677 timeout = val;
678 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
679
680 case WDIOC_GETTIMEOUT:
681 i = copy_to_user(argp, &timeout, sizeof(timeout));
682 if (i)
683 return -EFAULT;
684 return 0;
685
686 case WDIOC_SET_PRETIMEOUT:
Corey Minyard783e6bc2007-11-20 12:14:46 -0800687 case WDIOC_SETPRETIMEOUT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 i = copy_from_user(&val, argp, sizeof(int));
689 if (i)
690 return -EFAULT;
691 pretimeout = val;
692 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
693
694 case WDIOC_GET_PRETIMEOUT:
Corey Minyard783e6bc2007-11-20 12:14:46 -0800695 case WDIOC_GETPRETIMEOUT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 i = copy_to_user(argp, &pretimeout, sizeof(pretimeout));
697 if (i)
698 return -EFAULT;
699 return 0;
700
701 case WDIOC_KEEPALIVE:
702 return ipmi_heartbeat();
703
704 case WDIOC_SETOPTIONS:
705 i = copy_from_user(&val, argp, sizeof(int));
706 if (i)
707 return -EFAULT;
Corey Minyard36c7dc42008-04-29 01:01:12 -0700708 if (val & WDIOS_DISABLECARD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
710 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
711 ipmi_start_timer_on_heartbeat = 0;
712 }
713
Corey Minyard36c7dc42008-04-29 01:01:12 -0700714 if (val & WDIOS_ENABLECARD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 ipmi_watchdog_state = action_val;
716 ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
717 }
718 return 0;
719
720 case WDIOC_GETSTATUS:
721 val = 0;
722 i = copy_to_user(argp, &val, sizeof(val));
723 if (i)
724 return -EFAULT;
725 return 0;
726
727 default:
728 return -ENOIOCTLCMD;
729 }
730}
731
732static ssize_t ipmi_write(struct file *file,
733 const char __user *buf,
734 size_t len,
735 loff_t *ppos)
736{
737 int rv;
738
739 if (len) {
Corey Minyard36c7dc42008-04-29 01:01:12 -0700740 if (!nowayout) {
741 size_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /* In case it was set long ago */
744 expect_close = 0;
745
Corey Minyard36c7dc42008-04-29 01:01:12 -0700746 for (i = 0; i != len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 char c;
748
749 if (get_user(c, buf + i))
750 return -EFAULT;
751 if (c == 'V')
752 expect_close = 42;
753 }
754 }
755 rv = ipmi_heartbeat();
756 if (rv)
757 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Mark Rustad3976df92008-07-10 14:27:11 -0500759 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762static ssize_t ipmi_read(struct file *file,
763 char __user *buf,
764 size_t count,
765 loff_t *ppos)
766{
767 int rv = 0;
768 wait_queue_t wait;
769
770 if (count <= 0)
771 return 0;
772
Corey Minyard36c7dc42008-04-29 01:01:12 -0700773 /*
774 * Reading returns if the pretimeout has gone off, and it only does
775 * it once per pretimeout.
776 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 spin_lock(&ipmi_read_lock);
778 if (!data_to_read) {
779 if (file->f_flags & O_NONBLOCK) {
780 rv = -EAGAIN;
781 goto out;
782 }
Corey Minyard36c7dc42008-04-29 01:01:12 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 init_waitqueue_entry(&wait, current);
785 add_wait_queue(&read_q, &wait);
786 while (!data_to_read) {
787 set_current_state(TASK_INTERRUPTIBLE);
788 spin_unlock(&ipmi_read_lock);
789 schedule();
790 spin_lock(&ipmi_read_lock);
791 }
792 remove_wait_queue(&read_q, &wait);
Corey Minyard36c7dc42008-04-29 01:01:12 -0700793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (signal_pending(current)) {
795 rv = -ERESTARTSYS;
796 goto out;
797 }
798 }
799 data_to_read = 0;
800
801 out:
802 spin_unlock(&ipmi_read_lock);
803
804 if (rv == 0) {
805 if (copy_to_user(buf, &data_to_read, 1))
806 rv = -EFAULT;
807 else
808 rv = 1;
809 }
810
811 return rv;
812}
813
814static int ipmi_open(struct inode *ino, struct file *filep)
815{
Corey Minyard36c7dc42008-04-29 01:01:12 -0700816 switch (iminor(ino)) {
817 case WATCHDOG_MINOR:
Corey Minyarde8b33612005-09-06 15:18:45 -0700818 if (test_and_set_bit(0, &ipmi_wdog_open))
Corey Minyard36c7dc42008-04-29 01:01:12 -0700819 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Corey Minyard36c7dc42008-04-29 01:01:12 -0700821 /*
822 * Don't start the timer now, let it start on the
823 * first heartbeat.
824 */
Corey Minyarde8b33612005-09-06 15:18:45 -0700825 ipmi_start_timer_on_heartbeat = 1;
826 return nonseekable_open(ino, filep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Corey Minyarde8b33612005-09-06 15:18:45 -0700828 default:
829 return (-ENODEV);
Corey Minyard36c7dc42008-04-29 01:01:12 -0700830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
833static unsigned int ipmi_poll(struct file *file, poll_table *wait)
834{
835 unsigned int mask = 0;
Corey Minyard36c7dc42008-04-29 01:01:12 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 poll_wait(file, &read_q, wait);
838
839 spin_lock(&ipmi_read_lock);
840 if (data_to_read)
841 mask |= (POLLIN | POLLRDNORM);
842 spin_unlock(&ipmi_read_lock);
843
844 return mask;
845}
846
847static int ipmi_fasync(int fd, struct file *file, int on)
848{
849 int result;
850
851 result = fasync_helper(fd, file, on, &fasync_q);
852
853 return (result);
854}
855
856static int ipmi_close(struct inode *ino, struct file *filep)
857{
Corey Minyard8a3628d2006-03-31 02:30:40 -0800858 if (iminor(ino) == WATCHDOG_MINOR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (expect_close == 42) {
860 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
861 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 } else {
Corey Minyard8a3628d2006-03-31 02:30:40 -0800863 printk(KERN_CRIT PFX
864 "Unexpected close, not stopping watchdog!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 ipmi_heartbeat();
866 }
Corey Minyardec26d792005-05-01 08:59:11 -0700867 clear_bit(0, &ipmi_wdog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869
Corey Minyard36c7dc42008-04-29 01:01:12 -0700870 ipmi_fasync(-1, filep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 expect_close = 0;
872
873 return 0;
874}
875
Arjan van de Ven62322d22006-07-03 00:24:21 -0700876static const struct file_operations ipmi_wdog_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 .owner = THIS_MODULE,
878 .read = ipmi_read,
879 .poll = ipmi_poll,
880 .write = ipmi_write,
881 .ioctl = ipmi_ioctl,
882 .open = ipmi_open,
883 .release = ipmi_close,
884 .fasync = ipmi_fasync,
885};
886
887static struct miscdevice ipmi_wdog_miscdev = {
888 .minor = WATCHDOG_MINOR,
889 .name = "watchdog",
890 .fops = &ipmi_wdog_fops
891};
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893static void ipmi_wdog_msg_handler(struct ipmi_recv_msg *msg,
894 void *handler_data)
895{
896 if (msg->msg.data[0] != 0) {
897 printk(KERN_ERR PFX "response: Error %x on cmd %x\n",
898 msg->msg.data[0],
899 msg->msg.cmd);
900 }
Corey Minyard36c7dc42008-04-29 01:01:12 -0700901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 ipmi_free_recv_msg(msg);
903}
904
905static void ipmi_wdog_pretimeout_handler(void *handler_data)
906{
907 if (preaction_val != WDOG_PRETIMEOUT_NONE) {
Corey Minyardb3856762005-11-07 01:00:05 -0800908 if (preop_val == WDOG_PREOP_PANIC) {
909 if (atomic_inc_and_test(&preop_panic_excl))
910 panic("Watchdog pre-timeout");
911 } else if (preop_val == WDOG_PREOP_GIVE_DATA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 spin_lock(&ipmi_read_lock);
913 data_to_read = 1;
914 wake_up_interruptible(&read_q);
915 kill_fasync(&fasync_q, SIGIO, POLL_IN);
916
917 spin_unlock(&ipmi_read_lock);
918 }
919 }
920
Corey Minyard36c7dc42008-04-29 01:01:12 -0700921 /*
922 * On some machines, the heartbeat will give an error and not
923 * work unless we re-enable the timer. So do so.
924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 pretimeout_since_last_heartbeat = 1;
926}
927
Corey Minyard36c7dc42008-04-29 01:01:12 -0700928static struct ipmi_user_hndl ipmi_hndlrs = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 .ipmi_recv_hndl = ipmi_wdog_msg_handler,
930 .ipmi_watchdog_pretimeout = ipmi_wdog_pretimeout_handler
931};
932
933static void ipmi_register_watchdog(int ipmi_intf)
934{
935 int rv = -EBUSY;
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (watchdog_user)
938 goto out;
939
Corey Minyardb2c03942006-12-06 20:41:00 -0800940 if ((ifnum_to_use >= 0) && (ifnum_to_use != ipmi_intf))
941 goto out;
942
943 watchdog_ifnum = ipmi_intf;
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 rv = ipmi_create_user(ipmi_intf, &ipmi_hndlrs, NULL, &watchdog_user);
946 if (rv < 0) {
947 printk(KERN_CRIT PFX "Unable to register with ipmi\n");
948 goto out;
949 }
950
951 ipmi_get_version(watchdog_user,
952 &ipmi_version_major,
953 &ipmi_version_minor);
954
955 rv = misc_register(&ipmi_wdog_miscdev);
956 if (rv < 0) {
957 ipmi_destroy_user(watchdog_user);
958 watchdog_user = NULL;
959 printk(KERN_CRIT PFX "Unable to register misc device\n");
960 }
961
Corey Minyard612b5a82007-10-18 03:07:10 -0700962#ifdef HAVE_DIE_NMI
963 if (nmi_handler_registered) {
964 int old_pretimeout = pretimeout;
965 int old_timeout = timeout;
966 int old_preop_val = preop_val;
967
Corey Minyard36c7dc42008-04-29 01:01:12 -0700968 /*
969 * Set the pretimeout to go off in a second and give
970 * ourselves plenty of time to stop the timer.
971 */
Corey Minyard612b5a82007-10-18 03:07:10 -0700972 ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
973 preop_val = WDOG_PREOP_NONE; /* Make sure nothing happens */
974 pretimeout = 99;
975 timeout = 100;
976
977 testing_nmi = 1;
978
979 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
980 if (rv) {
981 printk(KERN_WARNING PFX "Error starting timer to"
982 " test NMI: 0x%x. The NMI pretimeout will"
983 " likely not work\n", rv);
984 rv = 0;
985 goto out_restore;
986 }
987
988 msleep(1500);
989
990 if (testing_nmi != 2) {
991 printk(KERN_WARNING PFX "IPMI NMI didn't seem to"
992 " occur. The NMI pretimeout will"
993 " likely not work\n");
994 }
Corey Minyard36c7dc42008-04-29 01:01:12 -0700995 out_restore:
Corey Minyard612b5a82007-10-18 03:07:10 -0700996 testing_nmi = 0;
997 preop_val = old_preop_val;
998 pretimeout = old_pretimeout;
999 timeout = old_timeout;
1000 }
1001#endif
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if ((start_now) && (rv == 0)) {
1005 /* Run from startup, so start the timer now. */
1006 start_now = 0; /* Disable this function after first startup. */
1007 ipmi_watchdog_state = action_val;
1008 ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
1009 printk(KERN_INFO PFX "Starting now!\n");
Corey Minyard612b5a82007-10-18 03:07:10 -07001010 } else {
1011 /* Stop the timer now. */
1012 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
1013 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015}
1016
Corey Minyardb2c03942006-12-06 20:41:00 -08001017static void ipmi_unregister_watchdog(int ipmi_intf)
1018{
1019 int rv;
1020
Corey Minyardb2c03942006-12-06 20:41:00 -08001021 if (!watchdog_user)
1022 goto out;
1023
1024 if (watchdog_ifnum != ipmi_intf)
1025 goto out;
1026
1027 /* Make sure no one can call us any more. */
1028 misc_deregister(&ipmi_wdog_miscdev);
1029
Corey Minyard36c7dc42008-04-29 01:01:12 -07001030 /*
1031 * Wait to make sure the message makes it out. The lower layer has
1032 * pointers to our buffers, we want to make sure they are done before
1033 * we release our memory.
1034 */
Corey Minyardb2c03942006-12-06 20:41:00 -08001035 while (atomic_read(&set_timeout_tofree))
1036 schedule_timeout_uninterruptible(1);
1037
1038 /* Disconnect from IPMI. */
1039 rv = ipmi_destroy_user(watchdog_user);
1040 if (rv) {
1041 printk(KERN_WARNING PFX "error unlinking from IPMI: %d\n",
1042 rv);
1043 }
1044 watchdog_user = NULL;
1045
1046 out:
Corey Minyardf8fbcd32007-10-18 03:07:08 -07001047 return;
Corey Minyardb2c03942006-12-06 20:41:00 -08001048}
1049
Corey Minyard612b5a82007-10-18 03:07:10 -07001050#ifdef HAVE_DIE_NMI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051static int
Corey Minyard612b5a82007-10-18 03:07:10 -07001052ipmi_nmi(struct notifier_block *self, unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Corey Minyard612b5a82007-10-18 03:07:10 -07001054 struct die_args *args = data;
1055
1056 if (val != DIE_NMI)
1057 return NOTIFY_OK;
1058
1059 /* Hack, if it's a memory or I/O error, ignore it. */
1060 if (args->err & 0xc0)
1061 return NOTIFY_OK;
1062
1063 /*
1064 * If we get here, it's an NMI that's not a memory or I/O
1065 * error. We can't truly tell if it's from IPMI or not
1066 * without sending a message, and sending a message is almost
1067 * impossible because of locking.
1068 */
1069
1070 if (testing_nmi) {
1071 testing_nmi = 2;
1072 return NOTIFY_STOP;
1073 }
1074
Corey Minyard36c7dc42008-04-29 01:01:12 -07001075 /* If we are not expecting a timeout, ignore it. */
Corey Minyard8f05ee92005-09-06 15:18:39 -07001076 if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
Corey Minyard612b5a82007-10-18 03:07:10 -07001077 return NOTIFY_OK;
1078
1079 if (preaction_val != WDOG_PRETIMEOUT_NMI)
1080 return NOTIFY_OK;
Corey Minyard8f05ee92005-09-06 15:18:39 -07001081
Corey Minyard36c7dc42008-04-29 01:01:12 -07001082 /*
1083 * If no one else handled the NMI, we assume it was the IPMI
1084 * watchdog.
1085 */
Corey Minyard612b5a82007-10-18 03:07:10 -07001086 if (preop_val == WDOG_PREOP_PANIC) {
Corey Minyard8f05ee92005-09-06 15:18:39 -07001087 /* On some machines, the heartbeat will give
1088 an error and not work unless we re-enable
1089 the timer. So do so. */
1090 pretimeout_since_last_heartbeat = 1;
Corey Minyardb3856762005-11-07 01:00:05 -08001091 if (atomic_inc_and_test(&preop_panic_excl))
1092 panic(PFX "pre-timeout");
Corey Minyard8f05ee92005-09-06 15:18:39 -07001093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Corey Minyard612b5a82007-10-18 03:07:10 -07001095 return NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Corey Minyard612b5a82007-10-18 03:07:10 -07001098static struct notifier_block ipmi_nmi_handler = {
1099 .notifier_call = ipmi_nmi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100};
1101#endif
1102
1103static int wdog_reboot_handler(struct notifier_block *this,
1104 unsigned long code,
1105 void *unused)
1106{
Corey Minyard36c7dc42008-04-29 01:01:12 -07001107 static int reboot_event_handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 if ((watchdog_user) && (!reboot_event_handled)) {
1110 /* Make sure we only do this once. */
1111 reboot_event_handled = 1;
1112
Corey Minyardfcfa4722007-10-18 03:07:09 -07001113 if (code == SYS_POWER_OFF || code == SYS_HALT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /* Disable the WDT if we are shutting down. */
1115 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
1116 panic_halt_ipmi_set_timeout();
Corey Minyard96febe92006-06-28 04:26:55 -07001117 } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* Set a long timer to let the reboot happens, but
Corey Minyard96febe92006-06-28 04:26:55 -07001119 reboot if it hangs, but only if the watchdog
1120 timer was already running. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 timeout = 120;
1122 pretimeout = 0;
1123 ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
1124 panic_halt_ipmi_set_timeout();
1125 }
1126 }
1127 return NOTIFY_OK;
1128}
1129
1130static struct notifier_block wdog_reboot_notifier = {
1131 .notifier_call = wdog_reboot_handler,
1132 .next = NULL,
1133 .priority = 0
1134};
1135
1136static int wdog_panic_handler(struct notifier_block *this,
1137 unsigned long event,
1138 void *unused)
1139{
Corey Minyard36c7dc42008-04-29 01:01:12 -07001140 static int panic_event_handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Corey Minyard96febe92006-06-28 04:26:55 -07001142 /* On a panic, if we have a panic timeout, make sure to extend
1143 the watchdog timer to a reasonable value to complete the
1144 panic, if the watchdog timer is running. Plus the
1145 pretimeout is meaningless at panic time. */
1146 if (watchdog_user && !panic_event_handled &&
1147 ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
1148 /* Make sure we do this only once. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 panic_event_handled = 1;
Corey Minyard36c7dc42008-04-29 01:01:12 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 timeout = 255;
1152 pretimeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 panic_halt_ipmi_set_timeout();
1154 }
1155
1156 return NOTIFY_OK;
1157}
1158
1159static struct notifier_block wdog_panic_notifier = {
1160 .notifier_call = wdog_panic_handler,
1161 .next = NULL,
1162 .priority = 150 /* priority: INT_MAX >= x >= 0 */
1163};
1164
1165
Corey Minyard50c812b2006-03-26 01:37:21 -08001166static void ipmi_new_smi(int if_num, struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 ipmi_register_watchdog(if_num);
1169}
1170
1171static void ipmi_smi_gone(int if_num)
1172{
Corey Minyardb2c03942006-12-06 20:41:00 -08001173 ipmi_unregister_watchdog(if_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Corey Minyard36c7dc42008-04-29 01:01:12 -07001176static struct ipmi_smi_watcher smi_watcher = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 .owner = THIS_MODULE,
1178 .new_smi = ipmi_new_smi,
1179 .smi_gone = ipmi_smi_gone
1180};
1181
Corey Minyardcc4673e2005-11-07 00:59:57 -08001182static int action_op(const char *inval, char *outval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Corey Minyardcc4673e2005-11-07 00:59:57 -08001184 if (outval)
1185 strcpy(outval, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Corey Minyardcc4673e2005-11-07 00:59:57 -08001187 if (!inval)
1188 return 0;
1189
1190 if (strcmp(inval, "reset") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 action_val = WDOG_TIMEOUT_RESET;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001192 else if (strcmp(inval, "none") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 action_val = WDOG_TIMEOUT_NONE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001194 else if (strcmp(inval, "power_cycle") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 action_val = WDOG_TIMEOUT_POWER_CYCLE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001196 else if (strcmp(inval, "power_off") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 action_val = WDOG_TIMEOUT_POWER_DOWN;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001198 else
1199 return -EINVAL;
1200 strcpy(action, inval);
1201 return 0;
1202}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Corey Minyardcc4673e2005-11-07 00:59:57 -08001204static int preaction_op(const char *inval, char *outval)
1205{
1206 if (outval)
1207 strcpy(outval, preaction);
1208
1209 if (!inval)
1210 return 0;
1211
1212 if (strcmp(inval, "pre_none") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 preaction_val = WDOG_PRETIMEOUT_NONE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001214 else if (strcmp(inval, "pre_smi") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 preaction_val = WDOG_PRETIMEOUT_SMI;
Corey Minyard612b5a82007-10-18 03:07:10 -07001216#ifdef HAVE_DIE_NMI
Corey Minyardcc4673e2005-11-07 00:59:57 -08001217 else if (strcmp(inval, "pre_nmi") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 preaction_val = WDOG_PRETIMEOUT_NMI;
1219#endif
Corey Minyardcc4673e2005-11-07 00:59:57 -08001220 else if (strcmp(inval, "pre_int") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 preaction_val = WDOG_PRETIMEOUT_MSG_INT;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001222 else
1223 return -EINVAL;
1224 strcpy(preaction, inval);
1225 return 0;
1226}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Corey Minyardcc4673e2005-11-07 00:59:57 -08001228static int preop_op(const char *inval, char *outval)
1229{
1230 if (outval)
1231 strcpy(outval, preop);
1232
1233 if (!inval)
1234 return 0;
1235
1236 if (strcmp(inval, "preop_none") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 preop_val = WDOG_PREOP_NONE;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001238 else if (strcmp(inval, "preop_panic") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 preop_val = WDOG_PREOP_PANIC;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001240 else if (strcmp(inval, "preop_give_data") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 preop_val = WDOG_PREOP_GIVE_DATA;
Corey Minyardcc4673e2005-11-07 00:59:57 -08001242 else
1243 return -EINVAL;
1244 strcpy(preop, inval);
1245 return 0;
1246}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Corey Minyardcc4673e2005-11-07 00:59:57 -08001248static void check_parms(void)
1249{
Corey Minyard612b5a82007-10-18 03:07:10 -07001250#ifdef HAVE_DIE_NMI
Corey Minyardcc4673e2005-11-07 00:59:57 -08001251 int do_nmi = 0;
1252 int rv;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (preaction_val == WDOG_PRETIMEOUT_NMI) {
Corey Minyardcc4673e2005-11-07 00:59:57 -08001255 do_nmi = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (preop_val == WDOG_PREOP_GIVE_DATA) {
1257 printk(KERN_WARNING PFX "Pretimeout op is to give data"
1258 " but NMI pretimeout is enabled, setting"
1259 " pretimeout op to none\n");
Corey Minyardcc4673e2005-11-07 00:59:57 -08001260 preop_op("preop_none", NULL);
1261 do_nmi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
Corey Minyardcc4673e2005-11-07 00:59:57 -08001264 if (do_nmi && !nmi_handler_registered) {
Corey Minyard612b5a82007-10-18 03:07:10 -07001265 rv = register_die_notifier(&ipmi_nmi_handler);
Corey Minyardcc4673e2005-11-07 00:59:57 -08001266 if (rv) {
1267 printk(KERN_WARNING PFX
1268 "Can't register nmi handler\n");
1269 return;
1270 } else
1271 nmi_handler_registered = 1;
1272 } else if (!do_nmi && nmi_handler_registered) {
Corey Minyard612b5a82007-10-18 03:07:10 -07001273 unregister_die_notifier(&ipmi_nmi_handler);
Corey Minyardcc4673e2005-11-07 00:59:57 -08001274 nmi_handler_registered = 0;
1275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276#endif
Corey Minyardcc4673e2005-11-07 00:59:57 -08001277}
1278
1279static int __init ipmi_wdog_init(void)
1280{
1281 int rv;
1282
1283 if (action_op(action, NULL)) {
1284 action_op("reset", NULL);
1285 printk(KERN_INFO PFX "Unknown action '%s', defaulting to"
1286 " reset\n", action);
1287 }
1288
1289 if (preaction_op(preaction, NULL)) {
1290 preaction_op("pre_none", NULL);
1291 printk(KERN_INFO PFX "Unknown preaction '%s', defaulting to"
1292 " none\n", preaction);
1293 }
1294
1295 if (preop_op(preop, NULL)) {
1296 preop_op("preop_none", NULL);
1297 printk(KERN_INFO PFX "Unknown preop '%s', defaulting to"
1298 " none\n", preop);
1299 }
1300
1301 check_parms();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Corey Minyardb2c03942006-12-06 20:41:00 -08001303 register_reboot_notifier(&wdog_reboot_notifier);
1304 atomic_notifier_chain_register(&panic_notifier_list,
1305 &wdog_panic_notifier);
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 rv = ipmi_smi_watcher_register(&smi_watcher);
1308 if (rv) {
Corey Minyard612b5a82007-10-18 03:07:10 -07001309#ifdef HAVE_DIE_NMI
1310 if (nmi_handler_registered)
1311 unregister_die_notifier(&ipmi_nmi_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312#endif
Corey Minyardb2c03942006-12-06 20:41:00 -08001313 atomic_notifier_chain_unregister(&panic_notifier_list,
1314 &wdog_panic_notifier);
1315 unregister_reboot_notifier(&wdog_reboot_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 printk(KERN_WARNING PFX "can't register smi watcher\n");
1317 return rv;
1318 }
1319
Corey Minyard1fdd75b2005-09-06 15:18:42 -07001320 printk(KERN_INFO PFX "driver initialized\n");
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return 0;
1323}
1324
Corey Minyardb2c03942006-12-06 20:41:00 -08001325static void __exit ipmi_wdog_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Corey Minyardb2c03942006-12-06 20:41:00 -08001327 ipmi_smi_watcher_unregister(&smi_watcher);
1328 ipmi_unregister_watchdog(watchdog_ifnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Corey Minyard612b5a82007-10-18 03:07:10 -07001330#ifdef HAVE_DIE_NMI
Corey Minyardcc4673e2005-11-07 00:59:57 -08001331 if (nmi_handler_registered)
Corey Minyard612b5a82007-10-18 03:07:10 -07001332 unregister_die_notifier(&ipmi_nmi_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333#endif
1334
Alan Sterne041c682006-03-27 01:16:30 -08001335 atomic_notifier_chain_unregister(&panic_notifier_list,
Corey Minyardb2c03942006-12-06 20:41:00 -08001336 &wdog_panic_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 unregister_reboot_notifier(&wdog_reboot_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339module_exit(ipmi_wdog_exit);
1340module_init(ipmi_wdog_init);
1341MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07001342MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
1343MODULE_DESCRIPTION("watchdog timer based upon the IPMI interface.");