softdog.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. /*
  2. * SoftDog 0.07: A Software Watchdog Device
  3. *
  4. * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
  5. * All Rights Reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. *
  12. * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
  13. * warranty for any of this software. This material is provided
  14. * "AS-IS" and at no charge.
  15. *
  16. * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
  17. *
  18. * Software only watchdog driver. Unlike its big brother the WDT501P
  19. * driver this won't always recover a failed machine.
  20. *
  21. * 03/96: Angelo Haritsis <ah@doc.ic.ac.uk> :
  22. * Modularised.
  23. * Added soft_margin; use upon insmod to change the timer delay.
  24. * NB: uses same minor as wdt (WATCHDOG_MINOR); we could use separate
  25. * minors.
  26. *
  27. * 19980911 Alan Cox
  28. * Made SMP safe for 2.3.x
  29. *
  30. * 20011127 Joel Becker (jlbec@evilplan.org>
  31. * Added soft_noboot; Allows testing the softdog trigger without
  32. * requiring a recompile.
  33. * Added WDIOC_GETTIMEOUT and WDIOC_SETTIMOUT.
  34. *
  35. * 20020530 Joel Becker <joel.becker@oracle.com>
  36. * Added Matt Domsch's nowayout module option.
  37. */
  38. #include <linux/module.h>
  39. #include <linux/moduleparam.h>
  40. #include <linux/types.h>
  41. #include <linux/timer.h>
  42. #include <linux/miscdevice.h>
  43. #include <linux/watchdog.h>
  44. #include <linux/fs.h>
  45. #include <linux/notifier.h>
  46. #include <linux/reboot.h>
  47. #include <linux/init.h>
  48. #include <linux/jiffies.h>
  49. #include <linux/uaccess.h>
  50. #define PFX "SoftDog: "
  51. #define TIMER_MARGIN 60 /* Default is 60 seconds */
  52. static int soft_margin = TIMER_MARGIN; /* in seconds */
  53. module_param(soft_margin, int, 0);
  54. MODULE_PARM_DESC(soft_margin,
  55. "Watchdog soft_margin in seconds. (0 < soft_margin < 65536, default="
  56. __MODULE_STRING(TIMER_MARGIN) ")");
  57. static int nowayout = WATCHDOG_NOWAYOUT;
  58. module_param(nowayout, int, 0);
  59. MODULE_PARM_DESC(nowayout,
  60. "Watchdog cannot be stopped once started (default="
  61. __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
  62. #ifdef ONLY_TESTING
  63. static int soft_noboot = 1;
  64. #else
  65. static int soft_noboot = 0;
  66. #endif /* ONLY_TESTING */
  67. module_param(soft_noboot, int, 0);
  68. MODULE_PARM_DESC(soft_noboot,
  69. "Softdog action, set to 1 to ignore reboots, 0 to reboot "
  70. "(default depends on ONLY_TESTING)");
  71. /*
  72. * Our timer
  73. */
  74. static void watchdog_fire(unsigned long);
  75. static struct timer_list watchdog_ticktock =
  76. TIMER_INITIALIZER(watchdog_fire, 0, 0);
  77. static unsigned long driver_open, orphan_timer;
  78. static char expect_close;
  79. /*
  80. * If the timer expires..
  81. */
  82. static void watchdog_fire(unsigned long data)
  83. {
  84. if (test_and_clear_bit(0, &orphan_timer))
  85. module_put(THIS_MODULE);
  86. if (soft_noboot)
  87. printk(KERN_CRIT PFX "Triggered - Reboot ignored.\n");
  88. else {
  89. printk(KERN_CRIT PFX "Initiating system reboot.\n");
  90. emergency_restart();
  91. printk(KERN_CRIT PFX "Reboot didn't ?????\n");
  92. }
  93. }
  94. /*
  95. * Softdog operations
  96. */
  97. static int softdog_keepalive(void)
  98. {
  99. mod_timer(&watchdog_ticktock, jiffies+(soft_margin*HZ));
  100. return 0;
  101. }
  102. static int softdog_stop(void)
  103. {
  104. del_timer(&watchdog_ticktock);
  105. return 0;
  106. }
  107. static int softdog_set_heartbeat(int t)
  108. {
  109. if ((t < 0x0001) || (t > 0xFFFF))
  110. return -EINVAL;
  111. soft_margin = t;
  112. return 0;
  113. }
  114. /*
  115. * /dev/watchdog handling
  116. */
  117. static int softdog_open(struct inode *inode, struct file *file)
  118. {
  119. if (test_and_set_bit(0, &driver_open))
  120. return -EBUSY;
  121. if (!test_and_clear_bit(0, &orphan_timer))
  122. __module_get(THIS_MODULE);
  123. /*
  124. * Activate timer
  125. */
  126. softdog_keepalive();
  127. return nonseekable_open(inode, file);
  128. }
  129. static int softdog_release(struct inode *inode, struct file *file)
  130. {
  131. /*
  132. * Shut off the timer.
  133. * Lock it in if it's a module and we set nowayout
  134. */
  135. if (expect_close == 42) {
  136. softdog_stop();
  137. module_put(THIS_MODULE);
  138. } else {
  139. printk(KERN_CRIT PFX
  140. "Unexpected close, not stopping watchdog!\n");
  141. set_bit(0, &orphan_timer);
  142. softdog_keepalive();
  143. }
  144. clear_bit(0, &driver_open);
  145. expect_close = 0;
  146. return 0;
  147. }
  148. static ssize_t softdog_write(struct file *file, const char __user *data,
  149. size_t len, loff_t *ppos)
  150. {
  151. /*
  152. * Refresh the timer.
  153. */
  154. if (len) {
  155. if (!nowayout) {
  156. size_t i;
  157. /* In case it was set long ago */
  158. expect_close = 0;
  159. for (i = 0; i != len; i++) {
  160. char c;
  161. if (get_user(c, data + i))
  162. return -EFAULT;
  163. if (c == 'V')
  164. expect_close = 42;
  165. }
  166. }
  167. softdog_keepalive();
  168. }
  169. return len;
  170. }
  171. static long softdog_ioctl(struct file *file, unsigned int cmd,
  172. unsigned long arg)
  173. {
  174. void __user *argp = (void __user *)arg;
  175. int __user *p = argp;
  176. int new_margin;
  177. static const struct watchdog_info ident = {
  178. .options = WDIOF_SETTIMEOUT |
  179. WDIOF_KEEPALIVEPING |
  180. WDIOF_MAGICCLOSE,
  181. .firmware_version = 0,
  182. .identity = "Software Watchdog",
  183. };
  184. switch (cmd) {
  185. case WDIOC_GETSUPPORT:
  186. return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
  187. case WDIOC_GETSTATUS:
  188. case WDIOC_GETBOOTSTATUS:
  189. return put_user(0, p);
  190. case WDIOC_KEEPALIVE:
  191. softdog_keepalive();
  192. return 0;
  193. case WDIOC_SETTIMEOUT:
  194. if (get_user(new_margin, p))
  195. return -EFAULT;
  196. if (softdog_set_heartbeat(new_margin))
  197. return -EINVAL;
  198. softdog_keepalive();
  199. /* Fall */
  200. case WDIOC_GETTIMEOUT:
  201. return put_user(soft_margin, p);
  202. default:
  203. return -ENOTTY;
  204. }
  205. }
  206. /*
  207. * Notifier for system down
  208. */
  209. static int softdog_notify_sys(struct notifier_block *this, unsigned long code,
  210. void *unused)
  211. {
  212. if (code == SYS_DOWN || code == SYS_HALT)
  213. /* Turn the WDT off */
  214. softdog_stop();
  215. return NOTIFY_DONE;
  216. }
  217. /*
  218. * Kernel Interfaces
  219. */
  220. static const struct file_operations softdog_fops = {
  221. .owner = THIS_MODULE,
  222. .llseek = no_llseek,
  223. .write = softdog_write,
  224. .unlocked_ioctl = softdog_ioctl,
  225. .open = softdog_open,
  226. .release = softdog_release,
  227. };
  228. static struct miscdevice softdog_miscdev = {
  229. .minor = WATCHDOG_MINOR,
  230. .name = "watchdog",
  231. .fops = &softdog_fops,
  232. };
  233. static struct notifier_block softdog_notifier = {
  234. .notifier_call = softdog_notify_sys,
  235. };
  236. static char banner[] __initdata = KERN_INFO "Software Watchdog Timer: 0.07 "
  237. "initialized. soft_noboot=%d soft_margin=%d sec (nowayout= %d)\n";
  238. static int __init watchdog_init(void)
  239. {
  240. int ret;
  241. /* Check that the soft_margin value is within it's range;
  242. if not reset to the default */
  243. if (softdog_set_heartbeat(soft_margin)) {
  244. softdog_set_heartbeat(TIMER_MARGIN);
  245. printk(KERN_INFO PFX
  246. "soft_margin must be 0 < soft_margin < 65536, using %d\n",
  247. TIMER_MARGIN);
  248. }
  249. ret = register_reboot_notifier(&softdog_notifier);
  250. if (ret) {
  251. printk(KERN_ERR PFX
  252. "cannot register reboot notifier (err=%d)\n", ret);
  253. return ret;
  254. }
  255. ret = misc_register(&softdog_miscdev);
  256. if (ret) {
  257. printk(KERN_ERR PFX
  258. "cannot register miscdev on minor=%d (err=%d)\n",
  259. WATCHDOG_MINOR, ret);
  260. unregister_reboot_notifier(&softdog_notifier);
  261. return ret;
  262. }
  263. printk(banner, soft_noboot, soft_margin, nowayout);
  264. return 0;
  265. }
  266. static void __exit watchdog_exit(void)
  267. {
  268. misc_deregister(&softdog_miscdev);
  269. unregister_reboot_notifier(&softdog_notifier);
  270. }
  271. module_init(watchdog_init);
  272. module_exit(watchdog_exit);
  273. MODULE_AUTHOR("Alan Cox");
  274. MODULE_DESCRIPTION("Software Watchdog Device Driver");
  275. MODULE_LICENSE("GPL");
  276. MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);