watchdog.c 3.3 KB

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