3
0

watchdog.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #include <stdio.h>
  23. #include <fcntl.h>
  24. #include <unistd.h>
  25. #include <stdlib.h>
  26. #include <signal.h>
  27. #include "busybox.h"
  28. /* Userspace timer duration, in seconds */
  29. static unsigned int timer_duration = 30;
  30. /* Watchdog file descriptor */
  31. static int fd;
  32. static void watchdog_shutdown(int unused)
  33. {
  34. write(fd, "V", 1); /* Magic */
  35. close(fd);
  36. exit(0);
  37. }
  38. extern int watchdog_main(int argc, char **argv)
  39. {
  40. int opt;
  41. while ((opt = getopt(argc, argv, "t:")) > 0) {
  42. switch (opt) {
  43. case 't':
  44. timer_duration = bb_xgetlarg(optarg, 10, 0, INT_MAX);
  45. break;
  46. default:
  47. bb_show_usage();
  48. }
  49. }
  50. /* We're only interested in the watchdog device .. */
  51. if (optind < argc - 1 || argc == 1)
  52. bb_show_usage();
  53. if (daemon(0, 1) < 0)
  54. bb_perror_msg_and_die("Failed forking watchdog daemon");
  55. signal(SIGHUP, watchdog_shutdown);
  56. signal(SIGINT, watchdog_shutdown);
  57. fd = bb_xopen(argv[argc - 1], O_WRONLY);
  58. while (1) {
  59. /*
  60. * Make sure we clear the counter before sleeping, as the counter value
  61. * is undefined at this point -- PFM
  62. */
  63. write(fd, "\0", 1);
  64. sleep(timer_duration);
  65. }
  66. watchdog_shutdown(0);
  67. return EXIT_SUCCESS;
  68. }