watchdog.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini watchdog implementation for busybox
  4. *
  5. * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
  6. * Copyright (C) 2006 Bernhard Reutner-Fischer <busybox@busybox.net>
  7. * Copyright (C) 2008 Darius Augulis <augulis.darius@gmail.com>
  8. *
  9. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  10. */
  11. //config:config WATCHDOG
  12. //config: bool "watchdog (5.3 kb)"
  13. //config: default y
  14. //config: help
  15. //config: The watchdog utility is used with hardware or software watchdog
  16. //config: device drivers. It opens the specified watchdog device special file
  17. //config: and periodically writes a magic character to the device. If the
  18. //config: watchdog applet ever fails to write the magic character within a
  19. //config: certain amount of time, the watchdog device assumes the system has
  20. //config: hung, and will cause the hardware to reboot.
  21. //applet:IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP))
  22. //kbuild:lib-$(CONFIG_WATCHDOG) += watchdog.o
  23. //usage:#define watchdog_trivial_usage
  24. //usage: "[-t N[ms]] [-T N[ms]] [-F] DEV"
  25. //usage:#define watchdog_full_usage "\n\n"
  26. //usage: "Periodically write to watchdog device DEV\n"
  27. //usage: "\n -T N Reboot after N seconds if not reset (default 60)"
  28. //usage: "\n -t N Reset every N seconds (default 30)"
  29. //usage: "\n -F Run in foreground"
  30. //usage: "\n"
  31. //usage: "\nUse 500ms to specify period in milliseconds"
  32. #include "libbb.h"
  33. #include <linux/types.h> /* for __u32 */
  34. #include <linux/watchdog.h>
  35. #ifndef WDIOC_SETOPTIONS
  36. # define WDIOC_SETOPTIONS 0x5704
  37. #endif
  38. #ifndef WDIOC_SETTIMEOUT
  39. # define WDIOC_SETTIMEOUT 0x5706
  40. #endif
  41. #ifndef WDIOC_GETTIMEOUT
  42. # define WDIOC_GETTIMEOUT 0x5707
  43. #endif
  44. #ifndef WDIOS_ENABLECARD
  45. # define WDIOS_ENABLECARD 2
  46. #endif
  47. #define OPT_FOREGROUND (1 << 0)
  48. #define OPT_STIMER (1 << 1)
  49. #define OPT_HTIMER (1 << 2)
  50. static void shutdown_watchdog(void)
  51. {
  52. static const char V = 'V';
  53. write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
  54. close(3);
  55. }
  56. static void shutdown_on_signal(int sig UNUSED_PARAM)
  57. {
  58. remove_pidfile_std_path_and_ext("watchdog");
  59. shutdown_watchdog();
  60. _exit(EXIT_SUCCESS);
  61. }
  62. static void watchdog_open(const char* device)
  63. {
  64. /* Use known fd # - avoid needing global 'int fd' */
  65. xmove_fd(xopen(device, O_WRONLY), 3);
  66. /* If the watchdog driver can do something other than cause a reboot
  67. * on a timeout, then it's possible this program may be starting from
  68. * a state when the watchdog hadn't been previously stopped with
  69. * the magic write followed by a close. In this case the driver may
  70. * not start properly, so always do the proper stop first just in case.
  71. */
  72. shutdown_watchdog();
  73. xmove_fd(xopen(device, O_WRONLY), 3);
  74. }
  75. int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  76. int watchdog_main(int argc UNUSED_PARAM, char **argv)
  77. {
  78. static const int enable = WDIOS_ENABLECARD;
  79. static const struct suffix_mult suffixes[] ALIGN_SUFFIX = {
  80. { "ms", 1 },
  81. { "", 1000 },
  82. { "", 0 }
  83. };
  84. unsigned opts;
  85. unsigned stimer_duration; /* how often to restart */
  86. unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */
  87. char *st_arg;
  88. char *ht_arg;
  89. opts = getopt32(argv, "^" "Ft:T:" "\0" "=1"/*must have exactly 1 arg*/,
  90. &st_arg, &ht_arg
  91. );
  92. /* We need to daemonize *before* opening the watchdog as many drivers
  93. * will only allow one process at a time to do so. Since daemonizing
  94. * is not perfect (child may run before parent finishes exiting), we
  95. * can't rely on parent exiting before us (let alone *cleanly* releasing
  96. * the watchdog fd -- something else that may not even be allowed).
  97. */
  98. if (!(opts & OPT_FOREGROUND))
  99. bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
  100. /* maybe bb_logenv_override(); here for LOGGING=syslog to work? */
  101. if (opts & OPT_HTIMER)
  102. htimer_duration = xatou_sfx(ht_arg, suffixes);
  103. stimer_duration = htimer_duration / 2;
  104. if (opts & OPT_STIMER)
  105. stimer_duration = xatou_sfx(st_arg, suffixes);
  106. bb_signals(BB_FATAL_SIGS, shutdown_on_signal);
  107. watchdog_open(argv[optind]);
  108. /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
  109. htimer_duration = htimer_duration / 1000;
  110. ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable);
  111. ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
  112. #if 0
  113. ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
  114. printf("watchdog: SW timer is %dms, HW timer is %ds\n",
  115. stimer_duration, htimer_duration * 1000);
  116. #endif
  117. write_pidfile_std_path_and_ext("watchdog");
  118. while (1) {
  119. /*
  120. * Make sure we clear the counter before sleeping,
  121. * as the counter value is undefined at this point -- PFM
  122. */
  123. write(3, "", 1); /* write zero byte */
  124. msleep(stimer_duration);
  125. }
  126. return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
  127. }