watchdog.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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"
  13. //config: default y
  14. //config: select PLATFORM_LINUX
  15. //config: help
  16. //config: The watchdog utility is used with hardware or software watchdog
  17. //config: device drivers. It opens the specified watchdog device special file
  18. //config: and periodically writes a magic character to the device. If the
  19. //config: watchdog applet ever fails to write the magic character within a
  20. //config: certain amount of time, the watchdog device assumes the system has
  21. //config: hung, and will cause the hardware to reboot.
  22. //applet:IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP))
  23. //kbuild:lib-$(CONFIG_WATCHDOG) += watchdog.o
  24. //usage:#define watchdog_trivial_usage
  25. //usage: "[-t N[ms]] [-T N[ms]] [-F] DEV"
  26. //usage:#define watchdog_full_usage "\n\n"
  27. //usage: "Periodically write to watchdog device DEV\n"
  28. //usage: "\n -T N Reboot after N seconds if not reset (default 60)"
  29. //usage: "\n -t N Reset every N seconds (default 30)"
  30. //usage: "\n -F Run in foreground"
  31. //usage: "\n"
  32. //usage: "\nUse 500ms to specify period in milliseconds"
  33. #include "libbb.h"
  34. #include "linux/types.h" /* for __u32 */
  35. #include "linux/watchdog.h"
  36. #define OPT_FOREGROUND (1 << 0)
  37. #define OPT_STIMER (1 << 1)
  38. #define OPT_HTIMER (1 << 2)
  39. static void watchdog_shutdown(int sig UNUSED_PARAM)
  40. {
  41. static const char V = 'V';
  42. remove_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid");
  43. write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
  44. if (ENABLE_FEATURE_CLEAN_UP)
  45. close(3);
  46. _exit(EXIT_SUCCESS);
  47. }
  48. int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  49. int watchdog_main(int argc, char **argv)
  50. {
  51. static const struct suffix_mult suffixes[] = {
  52. { "ms", 1 },
  53. { "", 1000 },
  54. { "", 0 }
  55. };
  56. unsigned opts;
  57. unsigned stimer_duration; /* how often to restart */
  58. unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */
  59. char *st_arg;
  60. char *ht_arg;
  61. opt_complementary = "=1"; /* must have exactly 1 argument */
  62. opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg);
  63. /* We need to daemonize *before* opening the watchdog as many drivers
  64. * will only allow one process at a time to do so. Since daemonizing
  65. * is not perfect (child may run before parent finishes exiting), we
  66. * can't rely on parent exiting before us (let alone *cleanly* releasing
  67. * the watchdog fd -- something else that may not even be allowed).
  68. */
  69. if (!(opts & OPT_FOREGROUND))
  70. bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
  71. if (opts & OPT_HTIMER)
  72. htimer_duration = xatou_sfx(ht_arg, suffixes);
  73. stimer_duration = htimer_duration / 2;
  74. if (opts & OPT_STIMER)
  75. stimer_duration = xatou_sfx(st_arg, suffixes);
  76. bb_signals(BB_FATAL_SIGS, watchdog_shutdown);
  77. /* Use known fd # - avoid needing global 'int fd' */
  78. xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3);
  79. /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
  80. htimer_duration = htimer_duration / 1000;
  81. #ifndef WDIOC_SETTIMEOUT
  82. # error WDIOC_SETTIMEOUT is not defined, cannot compile watchdog applet
  83. #else
  84. # if defined WDIOC_SETOPTIONS && defined WDIOS_ENABLECARD
  85. {
  86. static const int enable = WDIOS_ENABLECARD;
  87. ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable);
  88. }
  89. # endif
  90. ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
  91. #endif
  92. #if 0
  93. ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
  94. printf("watchdog: SW timer is %dms, HW timer is %ds\n",
  95. stimer_duration, htimer_duration * 1000);
  96. #endif
  97. write_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid");
  98. while (1) {
  99. /*
  100. * Make sure we clear the counter before sleeping,
  101. * as the counter value is undefined at this point -- PFM
  102. */
  103. write(3, "", 1); /* write zero byte */
  104. usleep(stimer_duration * 1000L);
  105. }
  106. return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
  107. }