ipmi_watchdog.c 33.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * ipmi_watchdog.c
 *
 * A watchdog timer based upon the IPMI interface.
 *
 * Author: MontaVista Software, Inc.
 *         Corey Minyard <minyard@mvista.com>
 *         source@mvista.com
 *
 * Copyright 2002 MontaVista Software Inc.
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License as published by the
 *  Free Software Foundation; either version 2 of the License, or (at your
 *  option) any later version.
 *
 *
 *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/ipmi.h>
#include <linux/ipmi_smi.h>
A
Arnd Bergmann 已提交
38
#include <linux/smp_lock.h>
L
Linus Torvalds 已提交
39 40 41
#include <linux/watchdog.h>
#include <linux/miscdevice.h>
#include <linux/init.h>
42
#include <linux/completion.h>
43
#include <linux/kdebug.h>
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51
#include <linux/rwsem.h>
#include <linux/errno.h>
#include <asm/uaccess.h>
#include <linux/notifier.h>
#include <linux/nmi.h>
#include <linux/reboot.h>
#include <linux/wait.h>
#include <linux/poll.h>
52 53
#include <linux/string.h>
#include <linux/ctype.h>
C
Corey Minyard 已提交
54
#include <linux/delay.h>
55
#include <asm/atomic.h>
56

C
Corey Minyard 已提交
57
#ifdef CONFIG_X86
58 59 60 61 62 63 64 65 66
/*
 * This is ugly, but I've determined that x86 is the only architecture
 * that can reasonably support the IPMI NMI watchdog timeout at this
 * time.  If another architecture adds this capability somehow, it
 * will have to be a somewhat different mechanism and I have no idea
 * how it will work.  So in the unlikely event that another
 * architecture supports this, we can figure out a good generic
 * mechanism for it at that time.
 */
C
Corey Minyard 已提交
67 68
#include <asm/kdebug.h>
#define HAVE_DIE_NMI
L
Linus Torvalds 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
#endif

#define	PFX "IPMI Watchdog: "

/*
 * The IPMI command/response information for the watchdog timer.
 */

/* values for byte 1 of the set command, byte 2 of the get response. */
#define WDOG_DONT_LOG		(1 << 7)
#define WDOG_DONT_STOP_ON_SET	(1 << 6)
#define WDOG_SET_TIMER_USE(byte, use) \
	byte = ((byte) & 0xf8) | ((use) & 0x7)
#define WDOG_GET_TIMER_USE(byte) ((byte) & 0x7)
#define WDOG_TIMER_USE_BIOS_FRB2	1
#define WDOG_TIMER_USE_BIOS_POST	2
#define WDOG_TIMER_USE_OS_LOAD		3
#define WDOG_TIMER_USE_SMS_OS		4
#define WDOG_TIMER_USE_OEM		5

/* values for byte 2 of the set command, byte 3 of the get response. */
#define WDOG_SET_PRETIMEOUT_ACT(byte, use) \
	byte = ((byte) & 0x8f) | (((use) & 0x7) << 4)
#define WDOG_GET_PRETIMEOUT_ACT(byte) (((byte) >> 4) & 0x7)
#define WDOG_PRETIMEOUT_NONE		0
#define WDOG_PRETIMEOUT_SMI		1
#define WDOG_PRETIMEOUT_NMI		2
#define WDOG_PRETIMEOUT_MSG_INT		3

/* Operations that can be performed on a pretimout. */
#define WDOG_PREOP_NONE		0
#define WDOG_PREOP_PANIC	1
101 102
/* Cause data to be available to read.  Doesn't work in NMI mode. */
#define WDOG_PREOP_GIVE_DATA	2
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110 111 112

/* Actions to perform on a full timeout. */
#define WDOG_SET_TIMEOUT_ACT(byte, use) \
	byte = ((byte) & 0xf8) | ((use) & 0x7)
#define WDOG_GET_TIMEOUT_ACT(byte) ((byte) & 0x7)
#define WDOG_TIMEOUT_NONE		0
#define WDOG_TIMEOUT_RESET		1
#define WDOG_TIMEOUT_POWER_DOWN		2
#define WDOG_TIMEOUT_POWER_CYCLE	3

113 114 115 116
/*
 * Byte 3 of the get command, byte 4 of the get response is the
 * pre-timeout in seconds.
 */
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124

/* Bits for setting byte 4 of the set command, byte 5 of the get response. */
#define WDOG_EXPIRE_CLEAR_BIOS_FRB2	(1 << 1)
#define WDOG_EXPIRE_CLEAR_BIOS_POST	(1 << 2)
#define WDOG_EXPIRE_CLEAR_OS_LOAD	(1 << 3)
#define WDOG_EXPIRE_CLEAR_SMS_OS	(1 << 4)
#define WDOG_EXPIRE_CLEAR_OEM		(1 << 5)

125 126 127 128 129 130 131
/*
 * Setting/getting the watchdog timer value.  This is for bytes 5 and
 * 6 (the timeout time) of the set command, and bytes 6 and 7 (the
 * timeout time) and 8 and 9 (the current countdown value) of the
 * response.  The timeout value is given in seconds (in the command it
 * is 100ms intervals).
 */
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
#define WDOG_SET_TIMEOUT(byte1, byte2, val) \
	(byte1) = (((val) * 10) & 0xff), (byte2) = (((val) * 10) >> 8)
#define WDOG_GET_TIMEOUT(byte1, byte2) \
	(((byte1) | ((byte2) << 8)) / 10)

#define IPMI_WDOG_RESET_TIMER		0x22
#define IPMI_WDOG_SET_TIMER		0x24
#define IPMI_WDOG_GET_TIMER		0x25

/* These are here until the real ones get into the watchdog.h interface. */
#ifndef WDIOC_GETTIMEOUT
#define	WDIOC_GETTIMEOUT        _IOW(WATCHDOG_IOCTL_BASE, 20, int)
#endif
#ifndef WDIOC_SET_PRETIMEOUT
#define	WDIOC_SET_PRETIMEOUT     _IOW(WATCHDOG_IOCTL_BASE, 21, int)
#endif
#ifndef WDIOC_GET_PRETIMEOUT
#define	WDIOC_GET_PRETIMEOUT     _IOW(WATCHDOG_IOCTL_BASE, 22, int)
#endif

152
static int nowayout = WATCHDOG_NOWAYOUT;
L
Linus Torvalds 已提交
153

R
Randy Dunlap 已提交
154
static ipmi_user_t watchdog_user;
155
static int watchdog_ifnum;
L
Linus Torvalds 已提交
156 157 158 159 160

/* Default the timeout to 10 seconds. */
static int timeout = 10;

/* The pre-timeout is disabled by default. */
R
Randy Dunlap 已提交
161
static int pretimeout;
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175

/* Default action is to reset the board on a timeout. */
static unsigned char action_val = WDOG_TIMEOUT_RESET;

static char action[16] = "reset";

static unsigned char preaction_val = WDOG_PRETIMEOUT_NONE;

static char preaction[16] = "pre_none";

static unsigned char preop_val = WDOG_PREOP_NONE;

static char preop[16] = "preop_none";
static DEFINE_SPINLOCK(ipmi_read_lock);
R
Randy Dunlap 已提交
176
static char data_to_read;
L
Linus Torvalds 已提交
177
static DECLARE_WAIT_QUEUE_HEAD(read_q);
R
Randy Dunlap 已提交
178 179
static struct fasync_struct *fasync_q;
static char pretimeout_since_last_heartbeat;
L
Linus Torvalds 已提交
180 181
static char expect_close;

182 183
static int ifnum_to_use = -1;

184 185 186 187 188 189
/* Parameters to ipmi_set_timeout */
#define IPMI_SET_TIMEOUT_NO_HB			0
#define IPMI_SET_TIMEOUT_HB_IF_NECESSARY	1
#define IPMI_SET_TIMEOUT_FORCE_HB		2

static int ipmi_set_timeout(int do_heartbeat);
190 191
static void ipmi_register_watchdog(int ipmi_intf);
static void ipmi_unregister_watchdog(int ipmi_intf);
192

193 194 195 196
/*
 * If true, the driver will start running as soon as it is configured
 * and ready.
 */
R
Randy Dunlap 已提交
197
static int start_now;
L
Linus Torvalds 已提交
198

199
static int set_param_timeout(const char *val, const struct kernel_param *kp)
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
{
	char *endp;
	int  l;
	int  rv = 0;

	if (!val)
		return -EINVAL;
	l = simple_strtoul(val, &endp, 0);
	if (endp == val)
		return -EINVAL;

	*((int *)kp->arg) = l;
	if (watchdog_user)
		rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);

	return rv;
}

218 219 220 221 222
static struct kernel_param_ops param_ops_timeout = {
	.set = set_param_timeout,
	.get = param_get_int,
};
#define param_check_timeout param_check_int
223 224 225 226 227 228 229 230

typedef int (*action_fn)(const char *intval, char *outval);

static int action_op(const char *inval, char *outval);
static int preaction_op(const char *inval, char *outval);
static int preop_op(const char *inval, char *outval);
static void check_parms(void);

231
static int set_param_str(const char *val, const struct kernel_param *kp)
232 233 234
{
	action_fn  fn = (action_fn) kp->arg;
	int        rv = 0;
235 236
	char       valcp[16];
	char       *s;
P
Pekka Enberg 已提交
237

238 239
	strncpy(valcp, val, 16);
	valcp[15] = '\0';
P
Pekka Enberg 已提交
240

241
	s = strstrip(valcp);
242

P
Pekka Enberg 已提交
243
	rv = fn(s, NULL);
244
	if (rv)
245
		goto out;
246 247 248 249 250

	check_parms();
	if (watchdog_user)
		rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);

251
 out:
252 253 254
	return rv;
}

255
static int get_param_str(char *buffer, const struct kernel_param *kp)
256 257 258 259 260 261 262 263 264 265
{
	action_fn fn = (action_fn) kp->arg;
	int       rv;

	rv = fn(NULL, buffer);
	if (rv)
		return rv;
	return strlen(buffer);
}

266

267
static int set_param_wdog_ifnum(const char *val, const struct kernel_param *kp)
268 269 270 271 272 273 274 275 276 277 278 279
{
	int rv = param_set_int(val, kp);
	if (rv)
		return rv;
	if ((ifnum_to_use < 0) || (ifnum_to_use == watchdog_ifnum))
		return 0;

	ipmi_unregister_watchdog(watchdog_ifnum);
	ipmi_register_watchdog(ifnum_to_use);
	return 0;
}

280 281 282 283 284 285 286 287 288 289 290 291 292
static struct kernel_param_ops param_ops_wdog_ifnum = {
	.set = set_param_wdog_ifnum,
	.get = param_get_int,
};

#define param_check_wdog_ifnum param_check_int

static struct kernel_param_ops param_ops_str = {
	.set = set_param_str,
	.get = get_param_str,
};

module_param(ifnum_to_use, wdog_ifnum, 0644);
293 294 295 296
MODULE_PARM_DESC(ifnum_to_use, "The interface number to use for the watchdog "
		 "timer.  Setting to -1 defaults to the first registered "
		 "interface");

297
module_param(timeout, timeout, 0644);
L
Linus Torvalds 已提交
298
MODULE_PARM_DESC(timeout, "Timeout value in seconds.");
299

300
module_param(pretimeout, timeout, 0644);
L
Linus Torvalds 已提交
301
MODULE_PARM_DESC(pretimeout, "Pretimeout value in seconds.");
302

303
module_param_cb(action, &param_ops_str, action_op, 0644);
L
Linus Torvalds 已提交
304 305
MODULE_PARM_DESC(action, "Timeout action. One of: "
		 "reset, none, power_cycle, power_off.");
306

307
module_param_cb(preaction, &param_ops_str, preaction_op, 0644);
L
Linus Torvalds 已提交
308 309
MODULE_PARM_DESC(preaction, "Pretimeout action.  One of: "
		 "pre_none, pre_smi, pre_nmi, pre_int.");
310

311
module_param_cb(preop, &param_ops_str, preop_op, 0644);
L
Linus Torvalds 已提交
312 313
MODULE_PARM_DESC(preop, "Pretimeout driver operation.  One of: "
		 "preop_none, preop_panic, preop_give_data.");
314

315
module_param(start_now, int, 0444);
L
Linus Torvalds 已提交
316 317
MODULE_PARM_DESC(start_now, "Set to 1 to start the watchdog as"
		 "soon as the driver is loaded.");
318 319

module_param(nowayout, int, 0644);
320 321
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
		 "(default=CONFIG_WATCHDOG_NOWAYOUT)");
L
Linus Torvalds 已提交
322 323 324 325 326

/* Default state of the timer. */
static unsigned char ipmi_watchdog_state = WDOG_TIMEOUT_NONE;

/* If shutting down via IPMI, we ignore the heartbeat. */
R
Randy Dunlap 已提交
327
static int ipmi_ignore_heartbeat;
L
Linus Torvalds 已提交
328 329

/* Is someone using the watchdog?  Only one user is allowed. */
R
Randy Dunlap 已提交
330
static unsigned long ipmi_wdog_open;
L
Linus Torvalds 已提交
331

332 333 334 335 336 337
/*
 * If set to 1, the heartbeat command will set the state to reset and
 * start the timer.  The timer doesn't normally run when the driver is
 * first opened until the heartbeat is set the first time, this
 * variable is used to accomplish this.
 */
R
Randy Dunlap 已提交
338
static int ipmi_start_timer_on_heartbeat;
L
Linus Torvalds 已提交
339 340 341 342 343

/* IPMI version of the BMC. */
static unsigned char ipmi_version_major;
static unsigned char ipmi_version_minor;

344 345
/* If a pretimeout occurs, this is used to allow only one panic to happen. */
static atomic_t preop_panic_excl = ATOMIC_INIT(-1);
L
Linus Torvalds 已提交
346

C
Corey Minyard 已提交
347 348 349 350 351
#ifdef HAVE_DIE_NMI
static int testing_nmi;
static int nmi_handler_registered;
#endif

L
Linus Torvalds 已提交
352 353
static int ipmi_heartbeat(void);

354 355 356 357 358 359
/*
 * We use a mutex to make sure that only one thing can send a set
 * timeout at one time, because we only have one copy of the data.
 * The mutex is claimed when the set_timeout is sent and freed
 * when both messages are free.
 */
L
Linus Torvalds 已提交
360
static atomic_t set_timeout_tofree = ATOMIC_INIT(0);
361 362
static DEFINE_MUTEX(set_timeout_lock);
static DECLARE_COMPLETION(set_timeout_wait);
L
Linus Torvalds 已提交
363 364 365
static void set_timeout_free_smi(struct ipmi_smi_msg *msg)
{
    if (atomic_dec_and_test(&set_timeout_tofree))
366
	    complete(&set_timeout_wait);
L
Linus Torvalds 已提交
367 368 369 370
}
static void set_timeout_free_recv(struct ipmi_recv_msg *msg)
{
    if (atomic_dec_and_test(&set_timeout_tofree))
371
	    complete(&set_timeout_wait);
L
Linus Torvalds 已提交
372
}
373
static struct ipmi_smi_msg set_timeout_smi_msg = {
L
Linus Torvalds 已提交
374 375
	.done = set_timeout_free_smi
};
376
static struct ipmi_recv_msg set_timeout_recv_msg = {
L
Linus Torvalds 已提交
377 378
	.done = set_timeout_free_recv
};
379

L
Linus Torvalds 已提交
380 381 382 383 384 385 386 387 388 389 390
static int i_ipmi_set_timeout(struct ipmi_smi_msg  *smi_msg,
			      struct ipmi_recv_msg *recv_msg,
			      int                  *send_heartbeat_now)
{
	struct kernel_ipmi_msg            msg;
	unsigned char                     data[6];
	int                               rv;
	struct ipmi_system_interface_addr addr;
	int                               hbnow = 0;


C
Corey Minyard 已提交
391 392 393
	/* These can be cleared as we are setting the timeout. */
	pretimeout_since_last_heartbeat = 0;

L
Linus Torvalds 已提交
394 395 396 397
	data[0] = 0;
	WDOG_SET_TIMER_USE(data[0], WDOG_TIMER_USE_SMS_OS);

	if ((ipmi_version_major > 1)
398
	    || ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) {
L
Linus Torvalds 已提交
399 400 401
		/* This is an IPMI 1.5-only feature. */
		data[0] |= WDOG_DONT_STOP_ON_SET;
	} else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
402 403 404 405
		/*
		 * In ipmi 1.0, setting the timer stops the watchdog, we
		 * need to start it back up again.
		 */
L
Linus Torvalds 已提交
406 407 408 409 410
		hbnow = 1;
	}

	data[1] = 0;
	WDOG_SET_TIMEOUT_ACT(data[1], ipmi_watchdog_state);
411
	if ((pretimeout > 0) && (ipmi_watchdog_state != WDOG_TIMEOUT_NONE)) {
L
Linus Torvalds 已提交
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
	    WDOG_SET_PRETIMEOUT_ACT(data[1], preaction_val);
	    data[2] = pretimeout;
	} else {
	    WDOG_SET_PRETIMEOUT_ACT(data[1], WDOG_PRETIMEOUT_NONE);
	    data[2] = 0; /* No pretimeout. */
	}
	data[3] = 0;
	WDOG_SET_TIMEOUT(data[4], data[5], timeout);

	addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	addr.channel = IPMI_BMC_CHANNEL;
	addr.lun = 0;

	msg.netfn = 0x06;
	msg.cmd = IPMI_WDOG_SET_TIMER;
	msg.data = data;
	msg.data_len = sizeof(data);
	rv = ipmi_request_supply_msgs(watchdog_user,
				      (struct ipmi_addr *) &addr,
				      0,
				      &msg,
				      NULL,
				      smi_msg,
				      recv_msg,
				      1);
	if (rv) {
		printk(KERN_WARNING PFX "set timeout error: %d\n",
		       rv);
	}

	if (send_heartbeat_now)
	    *send_heartbeat_now = hbnow;

	return rv;
}

static int ipmi_set_timeout(int do_heartbeat)
{
	int send_heartbeat_now;
	int rv;


	/* We can only send one of these at a time. */
455
	mutex_lock(&set_timeout_lock);
L
Linus Torvalds 已提交
456 457 458 459 460 461 462

	atomic_set(&set_timeout_tofree, 2);

	rv = i_ipmi_set_timeout(&set_timeout_smi_msg,
				&set_timeout_recv_msg,
				&send_heartbeat_now);
	if (rv) {
463 464 465 466 467 468
		mutex_unlock(&set_timeout_lock);
		goto out;
	}

	wait_for_completion(&set_timeout_wait);

C
Corey Minyard 已提交
469 470
	mutex_unlock(&set_timeout_lock);

471 472 473 474
	if ((do_heartbeat == IPMI_SET_TIMEOUT_FORCE_HB)
	    || ((send_heartbeat_now)
		&& (do_heartbeat == IPMI_SET_TIMEOUT_HB_IF_NECESSARY)))
		rv = ipmi_heartbeat();
L
Linus Torvalds 已提交
475

476
out:
L
Linus Torvalds 已提交
477 478 479
	return rv;
}

C
Corey Minyard 已提交
480 481 482
static atomic_t panic_done_count = ATOMIC_INIT(0);

static void panic_smi_free(struct ipmi_smi_msg *msg)
L
Linus Torvalds 已提交
483
{
C
Corey Minyard 已提交
484
	atomic_dec(&panic_done_count);
L
Linus Torvalds 已提交
485
}
C
Corey Minyard 已提交
486 487 488 489 490
static void panic_recv_free(struct ipmi_recv_msg *msg)
{
	atomic_dec(&panic_done_count);
}

491
static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg = {
C
Corey Minyard 已提交
492 493
	.done = panic_smi_free
};
494
static struct ipmi_recv_msg panic_halt_heartbeat_recv_msg = {
C
Corey Minyard 已提交
495 496 497 498 499 500 501 502 503
	.done = panic_recv_free
};

static void panic_halt_ipmi_heartbeat(void)
{
	struct kernel_ipmi_msg             msg;
	struct ipmi_system_interface_addr addr;
	int rv;

504 505 506 507
	/*
	 * Don't reset the timer if we have the timer turned off, that
	 * re-enables the watchdog.
	 */
C
Corey Minyard 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
	if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
		return;

	addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	addr.channel = IPMI_BMC_CHANNEL;
	addr.lun = 0;

	msg.netfn = 0x06;
	msg.cmd = IPMI_WDOG_RESET_TIMER;
	msg.data = NULL;
	msg.data_len = 0;
	rv = ipmi_request_supply_msgs(watchdog_user,
				      (struct ipmi_addr *) &addr,
				      0,
				      &msg,
				      NULL,
				      &panic_halt_heartbeat_smi_msg,
				      &panic_halt_heartbeat_recv_msg,
				      1);
	if (!rv)
		atomic_add(2, &panic_done_count);
L
Linus Torvalds 已提交
529
}
C
Corey Minyard 已提交
530

531
static struct ipmi_smi_msg panic_halt_smi_msg = {
C
Corey Minyard 已提交
532
	.done = panic_smi_free
L
Linus Torvalds 已提交
533
};
534
static struct ipmi_recv_msg panic_halt_recv_msg = {
C
Corey Minyard 已提交
535
	.done = panic_recv_free
L
Linus Torvalds 已提交
536 537
};

538 539 540 541 542 543
/*
 * Special call, doesn't claim any locks.  This is only to be called
 * at panic or halt time, in run-to-completion mode, when the caller
 * is the only CPU and the only thing that will be going is these IPMI
 * calls.
 */
L
Linus Torvalds 已提交
544 545 546 547 548
static void panic_halt_ipmi_set_timeout(void)
{
	int send_heartbeat_now;
	int rv;

C
Corey Minyard 已提交
549 550 551
	/* Wait for the messages to be free. */
	while (atomic_read(&panic_done_count) != 0)
		ipmi_poll_interface(watchdog_user);
L
Linus Torvalds 已提交
552 553 554 555
	rv = i_ipmi_set_timeout(&panic_halt_smi_msg,
				&panic_halt_recv_msg,
				&send_heartbeat_now);
	if (!rv) {
C
Corey Minyard 已提交
556
		atomic_add(2, &panic_done_count);
L
Linus Torvalds 已提交
557 558
		if (send_heartbeat_now)
			panic_halt_ipmi_heartbeat();
C
Corey Minyard 已提交
559 560 561 562 563
	} else
		printk(KERN_WARNING PFX
		       "Unable to extend the watchdog timeout.");
	while (atomic_read(&panic_done_count) != 0)
		ipmi_poll_interface(watchdog_user);
L
Linus Torvalds 已提交
564 565
}

566 567 568 569 570 571
/*
 * We use a mutex to make sure that only one thing can send a
 * heartbeat at one time, because we only have one copy of the data.
 * The semaphore is claimed when the set_timeout is sent and freed
 * when both messages are free.
 */
L
Linus Torvalds 已提交
572
static atomic_t heartbeat_tofree = ATOMIC_INIT(0);
573 574
static DEFINE_MUTEX(heartbeat_lock);
static DECLARE_COMPLETION(heartbeat_wait);
L
Linus Torvalds 已提交
575 576 577
static void heartbeat_free_smi(struct ipmi_smi_msg *msg)
{
    if (atomic_dec_and_test(&heartbeat_tofree))
578
	    complete(&heartbeat_wait);
L
Linus Torvalds 已提交
579 580 581 582
}
static void heartbeat_free_recv(struct ipmi_recv_msg *msg)
{
    if (atomic_dec_and_test(&heartbeat_tofree))
583
	    complete(&heartbeat_wait);
L
Linus Torvalds 已提交
584
}
585
static struct ipmi_smi_msg heartbeat_smi_msg = {
L
Linus Torvalds 已提交
586 587
	.done = heartbeat_free_smi
};
588
static struct ipmi_recv_msg heartbeat_recv_msg = {
L
Linus Torvalds 已提交
589 590
	.done = heartbeat_free_recv
};
591

L
Linus Torvalds 已提交
592 593 594 595 596 597
static int ipmi_heartbeat(void)
{
	struct kernel_ipmi_msg            msg;
	int                               rv;
	struct ipmi_system_interface_addr addr;

C
Corey Minyard 已提交
598
	if (ipmi_ignore_heartbeat)
L
Linus Torvalds 已提交
599 600 601
		return 0;

	if (ipmi_start_timer_on_heartbeat) {
602
		ipmi_start_timer_on_heartbeat = 0;
L
Linus Torvalds 已提交
603 604 605
		ipmi_watchdog_state = action_val;
		return ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
	} else if (pretimeout_since_last_heartbeat) {
606 607 608 609 610 611
		/*
		 * A pretimeout occurred, make sure we set the timeout.
		 * We don't want to set the action, though, we want to
		 * leave that alone (thus it can't be combined with the
		 * above operation.
		 */
L
Linus Torvalds 已提交
612 613 614
		return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
	}

615
	mutex_lock(&heartbeat_lock);
L
Linus Torvalds 已提交
616 617 618

	atomic_set(&heartbeat_tofree, 2);

619 620 621 622
	/*
	 * Don't reset the timer if we have the timer turned off, that
	 * re-enables the watchdog.
	 */
L
Linus Torvalds 已提交
623
	if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) {
624
		mutex_unlock(&heartbeat_lock);
L
Linus Torvalds 已提交
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
		return 0;
	}

	addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	addr.channel = IPMI_BMC_CHANNEL;
	addr.lun = 0;

	msg.netfn = 0x06;
	msg.cmd = IPMI_WDOG_RESET_TIMER;
	msg.data = NULL;
	msg.data_len = 0;
	rv = ipmi_request_supply_msgs(watchdog_user,
				      (struct ipmi_addr *) &addr,
				      0,
				      &msg,
				      NULL,
				      &heartbeat_smi_msg,
				      &heartbeat_recv_msg,
				      1);
	if (rv) {
645
		mutex_unlock(&heartbeat_lock);
L
Linus Torvalds 已提交
646 647 648 649 650 651
		printk(KERN_WARNING PFX "heartbeat failure: %d\n",
		       rv);
		return rv;
	}

	/* Wait for the heartbeat to be sent. */
652
	wait_for_completion(&heartbeat_wait);
L
Linus Torvalds 已提交
653 654

	if (heartbeat_recv_msg.msg.data[0] != 0) {
655 656 657 658 659 660
		/*
		 * Got an error in the heartbeat response.  It was already
		 * reported in ipmi_wdog_msg_handler, but we should return
		 * an error here.
		 */
		rv = -EINVAL;
L
Linus Torvalds 已提交
661 662
	}

663
	mutex_unlock(&heartbeat_lock);
L
Linus Torvalds 已提交
664 665 666 667

	return rv;
}

668
static struct watchdog_info ident = {
L
Linus Torvalds 已提交
669 670 671 672 673
	.options	= 0,	/* WDIOF_SETTIMEOUT, */
	.firmware_version = 1,
	.identity	= "IPMI"
};

674
static int ipmi_ioctl(struct file *file,
L
Linus Torvalds 已提交
675 676 677 678 679 680
		      unsigned int cmd, unsigned long arg)
{
	void __user *argp = (void __user *)arg;
	int i;
	int val;

681
	switch (cmd) {
L
Linus Torvalds 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
	case WDIOC_GETSUPPORT:
		i = copy_to_user(argp, &ident, sizeof(ident));
		return i ? -EFAULT : 0;

	case WDIOC_SETTIMEOUT:
		i = copy_from_user(&val, argp, sizeof(int));
		if (i)
			return -EFAULT;
		timeout = val;
		return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);

	case WDIOC_GETTIMEOUT:
		i = copy_to_user(argp, &timeout, sizeof(timeout));
		if (i)
			return -EFAULT;
		return 0;

	case WDIOC_SET_PRETIMEOUT:
700
	case WDIOC_SETPRETIMEOUT:
L
Linus Torvalds 已提交
701 702 703 704 705 706 707
		i = copy_from_user(&val, argp, sizeof(int));
		if (i)
			return -EFAULT;
		pretimeout = val;
		return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);

	case WDIOC_GET_PRETIMEOUT:
708
	case WDIOC_GETPRETIMEOUT:
L
Linus Torvalds 已提交
709 710 711 712 713 714 715 716 717 718 719 720
		i = copy_to_user(argp, &pretimeout, sizeof(pretimeout));
		if (i)
			return -EFAULT;
		return 0;

	case WDIOC_KEEPALIVE:
		return ipmi_heartbeat();

	case WDIOC_SETOPTIONS:
		i = copy_from_user(&val, argp, sizeof(int));
		if (i)
			return -EFAULT;
721
		if (val & WDIOS_DISABLECARD) {
L
Linus Torvalds 已提交
722 723 724 725 726
			ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
			ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
			ipmi_start_timer_on_heartbeat = 0;
		}

727
		if (val & WDIOS_ENABLECARD) {
L
Linus Torvalds 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
			ipmi_watchdog_state = action_val;
			ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
		}
		return 0;

	case WDIOC_GETSTATUS:
		val = 0;
		i = copy_to_user(argp, &val, sizeof(val));
		if (i)
			return -EFAULT;
		return 0;

	default:
		return -ENOIOCTLCMD;
	}
}

745 746 747 748 749 750 751 752 753 754 755 756 757
static long ipmi_unlocked_ioctl(struct file *file,
				unsigned int cmd,
				unsigned long arg)
{
	int ret;

	lock_kernel();
	ret = ipmi_ioctl(file, cmd, arg);
	unlock_kernel();

	return ret;
}

L
Linus Torvalds 已提交
758 759 760 761 762 763 764 765
static ssize_t ipmi_write(struct file *file,
			  const char  __user *buf,
			  size_t      len,
			  loff_t      *ppos)
{
	int rv;

	if (len) {
766 767
		if (!nowayout) {
			size_t i;
L
Linus Torvalds 已提交
768 769 770 771

			/* In case it was set long ago */
			expect_close = 0;

772
			for (i = 0; i != len; i++) {
L
Linus Torvalds 已提交
773 774 775 776 777 778 779 780 781 782 783 784
				char c;

				if (get_user(c, buf + i))
					return -EFAULT;
				if (c == 'V')
					expect_close = 42;
			}
		}
		rv = ipmi_heartbeat();
		if (rv)
			return rv;
	}
785
	return len;
L
Linus Torvalds 已提交
786 787 788 789 790 791 792 793 794 795 796 797 798
}

static ssize_t ipmi_read(struct file *file,
			 char        __user *buf,
			 size_t      count,
			 loff_t      *ppos)
{
	int          rv = 0;
	wait_queue_t wait;

	if (count <= 0)
		return 0;

799 800 801 802
	/*
	 * Reading returns if the pretimeout has gone off, and it only does
	 * it once per pretimeout.
	 */
L
Linus Torvalds 已提交
803 804 805 806 807 808
	spin_lock(&ipmi_read_lock);
	if (!data_to_read) {
		if (file->f_flags & O_NONBLOCK) {
			rv = -EAGAIN;
			goto out;
		}
809

L
Linus Torvalds 已提交
810 811 812 813 814 815 816 817 818
		init_waitqueue_entry(&wait, current);
		add_wait_queue(&read_q, &wait);
		while (!data_to_read) {
			set_current_state(TASK_INTERRUPTIBLE);
			spin_unlock(&ipmi_read_lock);
			schedule();
			spin_lock(&ipmi_read_lock);
		}
		remove_wait_queue(&read_q, &wait);
819

L
Linus Torvalds 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
		if (signal_pending(current)) {
			rv = -ERESTARTSYS;
			goto out;
		}
	}
	data_to_read = 0;

 out:
	spin_unlock(&ipmi_read_lock);

	if (rv == 0) {
		if (copy_to_user(buf, &data_to_read, 1))
			rv = -EFAULT;
		else
			rv = 1;
	}

	return rv;
}

static int ipmi_open(struct inode *ino, struct file *filep)
{
842 843
	switch (iminor(ino)) {
	case WATCHDOG_MINOR:
C
Corey Minyard 已提交
844
		if (test_and_set_bit(0, &ipmi_wdog_open))
845
			return -EBUSY;
L
Linus Torvalds 已提交
846

A
Arnd Bergmann 已提交
847 848
		cycle_kernel_lock();

849 850 851 852
		/*
		 * Don't start the timer now, let it start on the
		 * first heartbeat.
		 */
C
Corey Minyard 已提交
853 854
		ipmi_start_timer_on_heartbeat = 1;
		return nonseekable_open(ino, filep);
L
Linus Torvalds 已提交
855

C
Corey Minyard 已提交
856 857
	default:
		return (-ENODEV);
858
	}
L
Linus Torvalds 已提交
859 860 861 862 863
}

static unsigned int ipmi_poll(struct file *file, poll_table *wait)
{
	unsigned int mask = 0;
864

L
Linus Torvalds 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
	poll_wait(file, &read_q, wait);

	spin_lock(&ipmi_read_lock);
	if (data_to_read)
		mask |= (POLLIN | POLLRDNORM);
	spin_unlock(&ipmi_read_lock);

	return mask;
}

static int ipmi_fasync(int fd, struct file *file, int on)
{
	int result;

	result = fasync_helper(fd, file, on, &fasync_q);

	return (result);
}

static int ipmi_close(struct inode *ino, struct file *filep)
{
886
	if (iminor(ino) == WATCHDOG_MINOR) {
L
Linus Torvalds 已提交
887 888 889 890
		if (expect_close == 42) {
			ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
			ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
		} else {
891 892
			printk(KERN_CRIT PFX
			       "Unexpected close, not stopping watchdog!\n");
L
Linus Torvalds 已提交
893 894
			ipmi_heartbeat();
		}
895
		clear_bit(0, &ipmi_wdog_open);
L
Linus Torvalds 已提交
896 897 898 899 900 901 902
	}

	expect_close = 0;

	return 0;
}

903
static const struct file_operations ipmi_wdog_fops = {
L
Linus Torvalds 已提交
904 905 906 907
	.owner   = THIS_MODULE,
	.read    = ipmi_read,
	.poll    = ipmi_poll,
	.write   = ipmi_write,
908
	.unlocked_ioctl = ipmi_unlocked_ioctl,
L
Linus Torvalds 已提交
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
	.open    = ipmi_open,
	.release = ipmi_close,
	.fasync  = ipmi_fasync,
};

static struct miscdevice ipmi_wdog_miscdev = {
	.minor		= WATCHDOG_MINOR,
	.name		= "watchdog",
	.fops		= &ipmi_wdog_fops
};

static void ipmi_wdog_msg_handler(struct ipmi_recv_msg *msg,
				  void                 *handler_data)
{
	if (msg->msg.data[0] != 0) {
		printk(KERN_ERR PFX "response: Error %x on cmd %x\n",
		       msg->msg.data[0],
		       msg->msg.cmd);
	}
928

L
Linus Torvalds 已提交
929 930 931 932 933 934
	ipmi_free_recv_msg(msg);
}

static void ipmi_wdog_pretimeout_handler(void *handler_data)
{
	if (preaction_val != WDOG_PRETIMEOUT_NONE) {
935 936 937 938
		if (preop_val == WDOG_PREOP_PANIC) {
			if (atomic_inc_and_test(&preop_panic_excl))
				panic("Watchdog pre-timeout");
		} else if (preop_val == WDOG_PREOP_GIVE_DATA) {
L
Linus Torvalds 已提交
939 940 941 942 943 944 945 946 947
			spin_lock(&ipmi_read_lock);
			data_to_read = 1;
			wake_up_interruptible(&read_q);
			kill_fasync(&fasync_q, SIGIO, POLL_IN);

			spin_unlock(&ipmi_read_lock);
		}
	}

948 949 950 951
	/*
	 * On some machines, the heartbeat will give an error and not
	 * work unless we re-enable the timer.  So do so.
	 */
L
Linus Torvalds 已提交
952 953 954
	pretimeout_since_last_heartbeat = 1;
}

955
static struct ipmi_user_hndl ipmi_hndlrs = {
L
Linus Torvalds 已提交
956 957 958 959 960 961 962 963 964 965 966
	.ipmi_recv_hndl           = ipmi_wdog_msg_handler,
	.ipmi_watchdog_pretimeout = ipmi_wdog_pretimeout_handler
};

static void ipmi_register_watchdog(int ipmi_intf)
{
	int rv = -EBUSY;

	if (watchdog_user)
		goto out;

967 968 969 970 971
	if ((ifnum_to_use >= 0) && (ifnum_to_use != ipmi_intf))
		goto out;

	watchdog_ifnum = ipmi_intf;

L
Linus Torvalds 已提交
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
	rv = ipmi_create_user(ipmi_intf, &ipmi_hndlrs, NULL, &watchdog_user);
	if (rv < 0) {
		printk(KERN_CRIT PFX "Unable to register with ipmi\n");
		goto out;
	}

	ipmi_get_version(watchdog_user,
			 &ipmi_version_major,
			 &ipmi_version_minor);

	rv = misc_register(&ipmi_wdog_miscdev);
	if (rv < 0) {
		ipmi_destroy_user(watchdog_user);
		watchdog_user = NULL;
		printk(KERN_CRIT PFX "Unable to register misc device\n");
	}

C
Corey Minyard 已提交
989 990 991 992 993 994
#ifdef HAVE_DIE_NMI
	if (nmi_handler_registered) {
		int old_pretimeout = pretimeout;
		int old_timeout = timeout;
		int old_preop_val = preop_val;

995 996 997 998
		/*
		 * Set the pretimeout to go off in a second and give
		 * ourselves plenty of time to stop the timer.
		 */
C
Corey Minyard 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
		ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
		preop_val = WDOG_PREOP_NONE; /* Make sure nothing happens */
		pretimeout = 99;
		timeout = 100;

		testing_nmi = 1;

		rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
		if (rv) {
			printk(KERN_WARNING PFX "Error starting timer to"
			       " test NMI: 0x%x.  The NMI pretimeout will"
			       " likely not work\n", rv);
			rv = 0;
			goto out_restore;
		}

		msleep(1500);

		if (testing_nmi != 2) {
			printk(KERN_WARNING PFX "IPMI NMI didn't seem to"
			       " occur.  The NMI pretimeout will"
			       " likely not work\n");
		}
1022
 out_restore:
C
Corey Minyard 已提交
1023 1024 1025 1026 1027 1028 1029
		testing_nmi = 0;
		preop_val = old_preop_val;
		pretimeout = old_pretimeout;
		timeout = old_timeout;
	}
#endif

L
Linus Torvalds 已提交
1030 1031 1032 1033 1034 1035 1036
 out:
	if ((start_now) && (rv == 0)) {
		/* Run from startup, so start the timer now. */
		start_now = 0; /* Disable this function after first startup. */
		ipmi_watchdog_state = action_val;
		ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
		printk(KERN_INFO PFX "Starting now!\n");
C
Corey Minyard 已提交
1037 1038 1039 1040
	} else {
		/* Stop the timer now. */
		ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
		ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
L
Linus Torvalds 已提交
1041 1042 1043
	}
}

1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
static void ipmi_unregister_watchdog(int ipmi_intf)
{
	int rv;

	if (!watchdog_user)
		goto out;

	if (watchdog_ifnum != ipmi_intf)
		goto out;

	/* Make sure no one can call us any more. */
	misc_deregister(&ipmi_wdog_miscdev);

1057 1058 1059 1060 1061
	/*
	 * Wait to make sure the message makes it out.  The lower layer has
	 * pointers to our buffers, we want to make sure they are done before
	 * we release our memory.
	 */
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
	while (atomic_read(&set_timeout_tofree))
		schedule_timeout_uninterruptible(1);

	/* Disconnect from IPMI. */
	rv = ipmi_destroy_user(watchdog_user);
	if (rv) {
		printk(KERN_WARNING PFX "error unlinking from IPMI: %d\n",
		       rv);
	}
	watchdog_user = NULL;

 out:
1074
	return;
1075 1076
}

C
Corey Minyard 已提交
1077
#ifdef HAVE_DIE_NMI
L
Linus Torvalds 已提交
1078
static int
C
Corey Minyard 已提交
1079
ipmi_nmi(struct notifier_block *self, unsigned long val, void *data)
L
Linus Torvalds 已提交
1080
{
C
Corey Minyard 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
	struct die_args *args = data;

	if (val != DIE_NMI)
		return NOTIFY_OK;

	/* Hack, if it's a memory or I/O error, ignore it. */
	if (args->err & 0xc0)
		return NOTIFY_OK;

	/*
	 * If we get here, it's an NMI that's not a memory or I/O
	 * error.  We can't truly tell if it's from IPMI or not
	 * without sending a message, and sending a message is almost
	 * impossible because of locking.
	 */

	if (testing_nmi) {
		testing_nmi = 2;
		return NOTIFY_STOP;
	}

1102
	/* If we are not expecting a timeout, ignore it. */
1103
	if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
C
Corey Minyard 已提交
1104 1105 1106 1107
		return NOTIFY_OK;

	if (preaction_val != WDOG_PRETIMEOUT_NMI)
		return NOTIFY_OK;
1108

1109 1110 1111 1112
	/*
	 * If no one else handled the NMI, we assume it was the IPMI
	 * watchdog.
	 */
C
Corey Minyard 已提交
1113
	if (preop_val == WDOG_PREOP_PANIC) {
1114 1115 1116 1117
		/* On some machines, the heartbeat will give
		   an error and not work unless we re-enable
		   the timer.   So do so. */
		pretimeout_since_last_heartbeat = 1;
1118 1119
		if (atomic_inc_and_test(&preop_panic_excl))
			panic(PFX "pre-timeout");
1120
	}
L
Linus Torvalds 已提交
1121

C
Corey Minyard 已提交
1122
	return NOTIFY_STOP;
L
Linus Torvalds 已提交
1123 1124
}

C
Corey Minyard 已提交
1125 1126
static struct notifier_block ipmi_nmi_handler = {
	.notifier_call = ipmi_nmi
L
Linus Torvalds 已提交
1127 1128 1129 1130 1131 1132 1133
};
#endif

static int wdog_reboot_handler(struct notifier_block *this,
			       unsigned long         code,
			       void                  *unused)
{
1134
	static int reboot_event_handled;
L
Linus Torvalds 已提交
1135 1136 1137 1138 1139

	if ((watchdog_user) && (!reboot_event_handled)) {
		/* Make sure we only do this once. */
		reboot_event_handled = 1;

C
Corey Minyard 已提交
1140
		if (code == SYS_POWER_OFF || code == SYS_HALT) {
L
Linus Torvalds 已提交
1141 1142 1143
			/* Disable the WDT if we are shutting down. */
			ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
			panic_halt_ipmi_set_timeout();
1144
		} else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
L
Linus Torvalds 已提交
1145
			/* Set a long timer to let the reboot happens, but
1146 1147
			   reboot if it hangs, but only if the watchdog
			   timer was already running. */
L
Linus Torvalds 已提交
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
			timeout = 120;
			pretimeout = 0;
			ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
			panic_halt_ipmi_set_timeout();
		}
	}
	return NOTIFY_OK;
}

static struct notifier_block wdog_reboot_notifier = {
	.notifier_call	= wdog_reboot_handler,
	.next		= NULL,
	.priority	= 0
};

static int wdog_panic_handler(struct notifier_block *this,
			      unsigned long         event,
			      void                  *unused)
{
1167
	static int panic_event_handled;
L
Linus Torvalds 已提交
1168

1169 1170 1171 1172 1173 1174 1175
	/* On a panic, if we have a panic timeout, make sure to extend
	   the watchdog timer to a reasonable value to complete the
	   panic, if the watchdog timer is running.  Plus the
	   pretimeout is meaningless at panic time. */
	if (watchdog_user && !panic_event_handled &&
	    ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
		/* Make sure we do this only once. */
L
Linus Torvalds 已提交
1176
		panic_event_handled = 1;
1177

L
Linus Torvalds 已提交
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
		timeout = 255;
		pretimeout = 0;
		panic_halt_ipmi_set_timeout();
	}

	return NOTIFY_OK;
}

static struct notifier_block wdog_panic_notifier = {
	.notifier_call	= wdog_panic_handler,
	.next		= NULL,
	.priority	= 150	/* priority: INT_MAX >= x >= 0 */
};


1193
static void ipmi_new_smi(int if_num, struct device *device)
L
Linus Torvalds 已提交
1194 1195 1196 1197 1198 1199
{
	ipmi_register_watchdog(if_num);
}

static void ipmi_smi_gone(int if_num)
{
1200
	ipmi_unregister_watchdog(if_num);
L
Linus Torvalds 已提交
1201 1202
}

1203
static struct ipmi_smi_watcher smi_watcher = {
L
Linus Torvalds 已提交
1204 1205 1206 1207 1208
	.owner    = THIS_MODULE,
	.new_smi  = ipmi_new_smi,
	.smi_gone = ipmi_smi_gone
};

1209
static int action_op(const char *inval, char *outval)
L
Linus Torvalds 已提交
1210
{
1211 1212 1213 1214 1215
	if (outval)
		strcpy(outval, action);

	if (!inval)
		return 0;
L
Linus Torvalds 已提交
1216

1217
	if (strcmp(inval, "reset") == 0)
L
Linus Torvalds 已提交
1218
		action_val = WDOG_TIMEOUT_RESET;
1219
	else if (strcmp(inval, "none") == 0)
L
Linus Torvalds 已提交
1220
		action_val = WDOG_TIMEOUT_NONE;
1221
	else if (strcmp(inval, "power_cycle") == 0)
L
Linus Torvalds 已提交
1222
		action_val = WDOG_TIMEOUT_POWER_CYCLE;
1223
	else if (strcmp(inval, "power_off") == 0)
L
Linus Torvalds 已提交
1224
		action_val = WDOG_TIMEOUT_POWER_DOWN;
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
	else
		return -EINVAL;
	strcpy(action, inval);
	return 0;
}

static int preaction_op(const char *inval, char *outval)
{
	if (outval)
		strcpy(outval, preaction);
L
Linus Torvalds 已提交
1235

1236 1237 1238 1239
	if (!inval)
		return 0;

	if (strcmp(inval, "pre_none") == 0)
L
Linus Torvalds 已提交
1240
		preaction_val = WDOG_PRETIMEOUT_NONE;
1241
	else if (strcmp(inval, "pre_smi") == 0)
L
Linus Torvalds 已提交
1242
		preaction_val = WDOG_PRETIMEOUT_SMI;
C
Corey Minyard 已提交
1243
#ifdef HAVE_DIE_NMI
1244
	else if (strcmp(inval, "pre_nmi") == 0)
L
Linus Torvalds 已提交
1245 1246
		preaction_val = WDOG_PRETIMEOUT_NMI;
#endif
1247
	else if (strcmp(inval, "pre_int") == 0)
L
Linus Torvalds 已提交
1248
		preaction_val = WDOG_PRETIMEOUT_MSG_INT;
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
	else
		return -EINVAL;
	strcpy(preaction, inval);
	return 0;
}

static int preop_op(const char *inval, char *outval)
{
	if (outval)
		strcpy(outval, preop);
L
Linus Torvalds 已提交
1259

1260 1261 1262 1263
	if (!inval)
		return 0;

	if (strcmp(inval, "preop_none") == 0)
L
Linus Torvalds 已提交
1264
		preop_val = WDOG_PREOP_NONE;
1265
	else if (strcmp(inval, "preop_panic") == 0)
L
Linus Torvalds 已提交
1266
		preop_val = WDOG_PREOP_PANIC;
1267
	else if (strcmp(inval, "preop_give_data") == 0)
L
Linus Torvalds 已提交
1268
		preop_val = WDOG_PREOP_GIVE_DATA;
1269 1270 1271 1272 1273
	else
		return -EINVAL;
	strcpy(preop, inval);
	return 0;
}
L
Linus Torvalds 已提交
1274

1275 1276
static void check_parms(void)
{
C
Corey Minyard 已提交
1277
#ifdef HAVE_DIE_NMI
1278 1279 1280
	int do_nmi = 0;
	int rv;

L
Linus Torvalds 已提交
1281
	if (preaction_val == WDOG_PRETIMEOUT_NMI) {
1282
		do_nmi = 1;
L
Linus Torvalds 已提交
1283 1284 1285 1286
		if (preop_val == WDOG_PREOP_GIVE_DATA) {
			printk(KERN_WARNING PFX "Pretimeout op is to give data"
			       " but NMI pretimeout is enabled, setting"
			       " pretimeout op to none\n");
1287 1288
			preop_op("preop_none", NULL);
			do_nmi = 0;
L
Linus Torvalds 已提交
1289
		}
1290 1291
	}
	if (do_nmi && !nmi_handler_registered) {
C
Corey Minyard 已提交
1292
		rv = register_die_notifier(&ipmi_nmi_handler);
L
Linus Torvalds 已提交
1293
		if (rv) {
1294 1295 1296 1297 1298 1299
			printk(KERN_WARNING PFX
			       "Can't register nmi handler\n");
			return;
		} else
			nmi_handler_registered = 1;
	} else if (!do_nmi && nmi_handler_registered) {
C
Corey Minyard 已提交
1300
		unregister_die_notifier(&ipmi_nmi_handler);
1301
		nmi_handler_registered = 0;
L
Linus Torvalds 已提交
1302 1303
	}
#endif
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
}

static int __init ipmi_wdog_init(void)
{
	int rv;

	if (action_op(action, NULL)) {
		action_op("reset", NULL);
		printk(KERN_INFO PFX "Unknown action '%s', defaulting to"
		       " reset\n", action);
	}

	if (preaction_op(preaction, NULL)) {
		preaction_op("pre_none", NULL);
		printk(KERN_INFO PFX "Unknown preaction '%s', defaulting to"
		       " none\n", preaction);
	}

	if (preop_op(preop, NULL)) {
		preop_op("preop_none", NULL);
		printk(KERN_INFO PFX "Unknown preop '%s', defaulting to"
		       " none\n", preop);
	}

	check_parms();
L
Linus Torvalds 已提交
1329

1330 1331 1332 1333
	register_reboot_notifier(&wdog_reboot_notifier);
	atomic_notifier_chain_register(&panic_notifier_list,
			&wdog_panic_notifier);

L
Linus Torvalds 已提交
1334 1335
	rv = ipmi_smi_watcher_register(&smi_watcher);
	if (rv) {
C
Corey Minyard 已提交
1336 1337 1338
#ifdef HAVE_DIE_NMI
		if (nmi_handler_registered)
			unregister_die_notifier(&ipmi_nmi_handler);
L
Linus Torvalds 已提交
1339
#endif
1340 1341 1342
		atomic_notifier_chain_unregister(&panic_notifier_list,
						 &wdog_panic_notifier);
		unregister_reboot_notifier(&wdog_reboot_notifier);
L
Linus Torvalds 已提交
1343 1344 1345 1346
		printk(KERN_WARNING PFX "can't register smi watcher\n");
		return rv;
	}

1347 1348
	printk(KERN_INFO PFX "driver initialized\n");

L
Linus Torvalds 已提交
1349 1350 1351
	return 0;
}

1352
static void __exit ipmi_wdog_exit(void)
L
Linus Torvalds 已提交
1353
{
1354 1355
	ipmi_smi_watcher_unregister(&smi_watcher);
	ipmi_unregister_watchdog(watchdog_ifnum);
L
Linus Torvalds 已提交
1356

C
Corey Minyard 已提交
1357
#ifdef HAVE_DIE_NMI
1358
	if (nmi_handler_registered)
C
Corey Minyard 已提交
1359
		unregister_die_notifier(&ipmi_nmi_handler);
L
Linus Torvalds 已提交
1360 1361
#endif

1362
	atomic_notifier_chain_unregister(&panic_notifier_list,
1363
					 &wdog_panic_notifier);
L
Linus Torvalds 已提交
1364 1365 1366 1367 1368
	unregister_reboot_notifier(&wdog_reboot_notifier);
}
module_exit(ipmi_wdog_exit);
module_init(ipmi_wdog_init);
MODULE_LICENSE("GPL");
1369 1370
MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
MODULE_DESCRIPTION("watchdog timer based upon the IPMI interface.");