timeout.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2. * COPYING NOTES
  3. *
  4. * timeout.c -- a timeout handler for shell commands
  5. *
  6. * Copyright (C) 2005-6, Roberto A. Foglietta <me@roberto.foglietta.name>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; version 2 of the License.
  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
  15. * GNU 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. * REVISION NOTES:
  23. * released 17-11-2005 by Roberto A. Foglietta
  24. * talarm 04-12-2005 by Roberto A. Foglietta
  25. * modified 05-12-2005 by Roberto A. Foglietta
  26. * sizerdct 06-12-2005 by Roberto A. Foglietta
  27. * splitszf 12-05-2006 by Roberto A. Foglietta
  28. * rewrite 14-11-2008 vda
  29. */
  30. //config:config TIMEOUT
  31. //config: bool "timeout (6 kb)"
  32. //config: default y
  33. //config: help
  34. //config: Runs a program and watches it. If it does not terminate in
  35. //config: specified number of seconds, it is sent a signal.
  36. //applet:IF_TIMEOUT(APPLET(timeout, BB_DIR_USR_BIN, BB_SUID_DROP))
  37. //kbuild:lib-$(CONFIG_TIMEOUT) += timeout.o
  38. //usage:#define timeout_trivial_usage
  39. //usage: "[-s SIG] SECS PROG ARGS"
  40. //usage:#define timeout_full_usage "\n\n"
  41. //usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n"
  42. //usage: "Default SIG: TERM."
  43. #include "libbb.h"
  44. int timeout_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  45. int timeout_main(int argc UNUSED_PARAM, char **argv)
  46. {
  47. int signo;
  48. int status;
  49. int parent = 0;
  50. int timeout;
  51. pid_t pid;
  52. #if !BB_MMU
  53. char *sv1, *sv2;
  54. #endif
  55. const char *opt_s = "TERM";
  56. /* -p option is not documented, it is needed to support NOMMU. */
  57. /* -t SECONDS; -p PARENT_PID */
  58. /* '+': stop at first non-option */
  59. getopt32(argv, "+s:" USE_FOR_NOMMU("p:+"), &opt_s, &parent);
  60. /*argv += optind; - no, wait for bb_daemonize_or_rexec! */
  61. signo = get_signum(opt_s);
  62. if (signo < 0)
  63. bb_error_msg_and_die("unknown signal '%s'", opt_s);
  64. if (!argv[optind])
  65. bb_show_usage();
  66. timeout = parse_duration_str(argv[optind++]);
  67. if (!argv[optind]) /* no PROG? */
  68. bb_show_usage();
  69. /* We want to create a grandchild which will watch
  70. * and kill the grandparent. Other methods:
  71. * making parent watch child disrupts parent<->child link
  72. * (example: "tcpsvd 0.0.0.0 1234 timeout service_prog" -
  73. * it's better if service_prog is a child of tcpsvd!),
  74. * making child watch parent results in programs having
  75. * unexpected children. */
  76. if (parent) /* we were re-execed, already grandchild */
  77. goto grandchild;
  78. #if !BB_MMU
  79. sv1 = argv[optind];
  80. sv2 = argv[optind + 1];
  81. #endif
  82. pid = xvfork();
  83. if (pid == 0) {
  84. /* Child: spawn grandchild and exit */
  85. parent = getppid();
  86. #if !BB_MMU
  87. argv[optind] = xasprintf("-p%u", parent);
  88. argv[optind + 1] = NULL;
  89. #endif
  90. /* NB: exits with nonzero on error: */
  91. bb_daemonize_or_rexec(0, argv);
  92. /* Here we are grandchild. Sleep, then kill grandparent */
  93. grandchild:
  94. /* Just sleep(HUGE_NUM); kill(parent) may kill wrong process! */
  95. while (1) {
  96. sleep1();
  97. if (--timeout <= 0)
  98. break;
  99. if (kill(parent, 0)) {
  100. /* process is gone */
  101. return EXIT_SUCCESS;
  102. }
  103. }
  104. kill(parent, signo);
  105. return EXIT_SUCCESS;
  106. }
  107. /* Parent */
  108. wait(&status); /* wait for child to die */
  109. /* Did intermediate [v]fork or exec fail? */
  110. if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
  111. return EXIT_FAILURE;
  112. /* Ok, exec a program as requested */
  113. argv += optind;
  114. #if !BB_MMU
  115. argv[0] = sv1;
  116. argv[1] = sv2;
  117. #endif
  118. BB_EXECVP_or_die(argv);
  119. }