softdog.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * SoftDog 0.05: A Software Watchdog Device
  3.  *
  4.  * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
  5.  * http://www.redhat.com
  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.  
  36. #include <linux/module.h>
  37. #include <linux/config.h>
  38. #include <linux/types.h>
  39. #include <linux/kernel.h>
  40. #include <linux/fs.h>
  41. #include <linux/mm.h>
  42. #include <linux/miscdevice.h>
  43. #include <linux/watchdog.h>
  44. #include <linux/reboot.h>
  45. #include <linux/smp_lock.h>
  46. #include <linux/init.h>
  47. #include <asm/uaccess.h>
  48. #define TIMER_MARGIN 60 /* (secs) Default is 1 minute */
  49. static int soft_margin = TIMER_MARGIN; /* in seconds */
  50. #ifdef ONLY_TESTING
  51. static int soft_noboot = 1;
  52. #else
  53. static int soft_noboot = 0;
  54. #endif  /* ONLY_TESTING */
  55. MODULE_PARM(soft_margin,"i");
  56. MODULE_PARM(soft_noboot,"i");
  57. MODULE_LICENSE("GPL");
  58. /*
  59.  * Our timer
  60.  */
  61.  
  62. static void watchdog_fire(unsigned long);
  63. static struct timer_list watchdog_ticktock = {
  64. function: watchdog_fire,
  65. };
  66. static int timer_alive;
  67. /*
  68.  * If the timer expires..
  69.  */
  70.  
  71. static void watchdog_fire(unsigned long data)
  72. {
  73. if (soft_noboot)
  74. printk(KERN_CRIT "SOFTDOG: Triggered - Reboot ignored.n");
  75. else
  76. {
  77. printk(KERN_CRIT "SOFTDOG: Initiating system reboot.n");
  78. machine_restart(NULL);
  79. printk("SOFTDOG: Reboot didn't ?????n");
  80. }
  81. }
  82. /*
  83.  * Allow only one person to hold it open
  84.  */
  85.  
  86. static int softdog_open(struct inode *inode, struct file *file)
  87. {
  88. if(timer_alive)
  89. return -EBUSY;
  90. #ifdef CONFIG_WATCHDOG_NOWAYOUT  
  91. MOD_INC_USE_COUNT;
  92. #endif
  93. /*
  94.  * Activate timer
  95.  */
  96. mod_timer(&watchdog_ticktock, jiffies+(soft_margin*HZ));
  97. timer_alive=1;
  98. return 0;
  99. }
  100. static int softdog_release(struct inode *inode, struct file *file)
  101. {
  102. /*
  103.  * Shut off the timer.
  104.  *  Lock it in if it's a module and we defined ...NOWAYOUT
  105.  */
  106.  lock_kernel();
  107. #ifndef CONFIG_WATCHDOG_NOWAYOUT  
  108. del_timer(&watchdog_ticktock);
  109. #endif
  110. timer_alive=0;
  111. unlock_kernel();
  112. return 0;
  113. }
  114. static ssize_t softdog_write(struct file *file, const char *data, size_t len, loff_t *ppos)
  115. {
  116. /*  Can't seek (pwrite) on this device  */
  117. if (ppos != &file->f_pos)
  118. return -ESPIPE;
  119. /*
  120.  * Refresh the timer.
  121.  */
  122. if(len) {
  123. mod_timer(&watchdog_ticktock, jiffies+(soft_margin*HZ));
  124. return 1;
  125. }
  126. return 0;
  127. }
  128. static int softdog_ioctl(struct inode *inode, struct file *file,
  129. unsigned int cmd, unsigned long arg)
  130. {
  131. int new_margin;
  132. static struct watchdog_info ident = {
  133. WDIOF_SETTIMEOUT,
  134. 0,
  135. "Software Watchdog"
  136. };
  137. switch (cmd) {
  138. default:
  139. return -ENOTTY;
  140. case WDIOC_GETSUPPORT:
  141. if(copy_to_user((struct watchdog_info *)arg, &ident, sizeof(ident)))
  142. return -EFAULT;
  143. return 0;
  144. case WDIOC_GETSTATUS:
  145. case WDIOC_GETBOOTSTATUS:
  146. return put_user(0,(int *)arg);
  147. case WDIOC_KEEPALIVE:
  148. mod_timer(&watchdog_ticktock, jiffies+(soft_margin*HZ));
  149. return 0;
  150. case WDIOC_SETTIMEOUT:
  151. if (get_user(new_margin, (int *)arg))
  152. return -EFAULT;
  153. if (new_margin < 1)
  154. return -EINVAL;
  155. soft_margin = new_margin;
  156. mod_timer(&watchdog_ticktock, jiffies+(soft_margin*HZ));
  157. /* Fall */
  158. case WDIOC_GETTIMEOUT:
  159. return put_user(soft_margin, (int *)arg);
  160. }
  161. }
  162. static struct file_operations softdog_fops = {
  163. owner: THIS_MODULE,
  164. write: softdog_write,
  165. ioctl: softdog_ioctl,
  166. open: softdog_open,
  167. release: softdog_release,
  168. };
  169. static struct miscdevice softdog_miscdev = {
  170. minor: WATCHDOG_MINOR,
  171. name: "watchdog",
  172. fops: &softdog_fops,
  173. };
  174. static char banner[] __initdata = KERN_INFO "Software Watchdog Timer: 0.05, timer margin: %d secn";
  175. static int __init watchdog_init(void)
  176. {
  177. int ret;
  178. ret = misc_register(&softdog_miscdev);
  179. if (ret)
  180. return ret;
  181. printk(banner, soft_margin);
  182. return 0;
  183. }
  184. static void __exit watchdog_exit(void)
  185. {
  186. misc_deregister(&softdog_miscdev);
  187. }
  188. module_init(watchdog_init);
  189. module_exit(watchdog_exit);