1 /* timeout -- run a command with bounded time
2 Copyright (C) 2008 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* timeout - Start a command, and kill it if the specified timeout expires
20 We try to behave like a shell starting a single (foreground) job,
21 and will kill the job if we receive the alarm signal we setup.
22 The exit status of the job is returned, or one of these errors:
23 EXIT_TIMEDOUT 124 job timed out
24 EXIT_CANCELED 125 internal error
25 EXIT_CANNOT_INVOKE 126 error executing job
26 EXIT_ENOENT 127 couldn't find job to exec
29 If user specifies the KILL (9) signal is to be sent on timeout,
30 the monitor is killed and so exits with 128+9 rather than 124.
32 If you start a command in the background, which reads from the tty
33 and so is immediately sent SIGTTIN to stop, then the timeout
34 process will ignore this so it can timeout the command as expected.
35 This can be seen with `timeout 10 dd&` for example.
36 However if one brings this group to the foreground with the `fg`
37 command before the timer expires, the command will remain
38 in the sTop state as the shell doesn't send a SIGCONT
39 because the timeout process (group leader) is already running.
40 To get the command running again one can Ctrl-Z, and do fg again.
41 Note one can Ctrl-C the whole job when in this state.
42 I think this could be fixed but I'm not sure the extra
43 complication is justified for this scenario.
45 Written by Pádraig Brady. */
50 #include <sys/types.h>
54 # include <sys/wait.h>
57 # define WIFSIGNALED(s) (((s) & 0xFFFF) - 1 < (unsigned int) 0xFF)
60 # define WTERMSIG(s) ((s) & 0x7F)
66 #include "operand2sig.h"
69 #include "long-options.h"
72 #define PROGRAM_NAME "timeout"
74 #define AUTHORS proper_name_utf8 ("Padraig Brady", "P\303\241draig Brady")
76 /* Note ETIMEDOUT is 110 on linux but this is non standard */
77 #define EXIT_TIMEDOUT 124
79 /* Internal failure. */
80 #define EXIT_CANCELED 125
83 static int term_signal = SIGTERM; /* same default as kill command. */
84 static int monitored_pid;
85 static int sigs_to_ignore[NSIG]; /* so monitor can ignore sigs it resends. */
87 static struct option const long_options[] =
89 {"signal", required_argument, NULL, 's'},
93 /* send sig to group but not ourselves.
94 * FIXME: Is there a better way to achieve this? */
96 send_sig (int where, int sig)
98 sigs_to_ignore[sig] = 1;
99 return kill (where, sig);
112 if (sigs_to_ignore[sig])
114 sigs_to_ignore[sig] = 0;
118 if (sig != SIGKILL && sig != SIGCONT)
119 send_sig (0, SIGCONT);
121 else /* we're the child or the child is not exec'd yet. */
128 if (status != EXIT_SUCCESS)
129 fprintf (stderr, _("Try `%s --help' for more information.\n"),
134 Usage: %s [OPTION] NUMBER[SUFFIX] COMMAND [ARG]...\n\
135 or: %s [OPTION]\n"), program_name, program_name);
138 Start COMMAND, and kill it if still running after NUMBER seconds.\n\
139 SUFFIX may be `s' for seconds (the default), `m' for minutes,\n\
140 `h' for hours or `d' for days.\n\
145 Mandatory arguments to long options are mandatory for short options too.\n\
148 -s, --signal=SIGNAL\n\
149 specify the signal to be sent on timeout.\n\
150 SIGNAL may be a name like `HUP' or a number.\n\
151 See `kill -l` for a list of signals\n"), stdout);
153 fputs (HELP_OPTION_DESCRIPTION, stdout);
154 fputs (VERSION_OPTION_DESCRIPTION, stdout);
156 If the command times out, then we exit with status 124,\n\
157 otherwise the normal exit status of the command is returned.\n\
158 If no signal is specified, the TERM signal is sent. The TERM signal\n\
159 will kill processes which do not catch this signal. For other processes,\n\
160 it may be necessary to use the KILL (9) signal, since this signal cannot\n\
161 be caught.\n"), stdout);
162 emit_bug_reporting_address ();
167 /* Given an integer value *X, and a suffix character, SUFFIX_CHAR,
168 scale *X by the multiplier implied by SUFFIX_CHAR. SUFFIX_CHAR may
169 be the NUL byte or `s' to denote seconds, `m' for minutes, `h' for
170 hours, or `d' for days. If SUFFIX_CHAR is invalid, don't modify *X
171 and return false. If *X would overflow, don't modify *X and return false.
172 Otherwise return true. */
175 apply_time_suffix (unsigned int *x, char suffix_char)
195 if (*x > UINT_MAX / multiplier)
204 install_signal_handlers (void)
207 sigemptyset(&sa.sa_mask); /* Allow concurrent calls to handler */
208 sa.sa_handler = cleanup;
209 sa.sa_flags = SA_RESTART; /* restart syscalls (like wait() below) */
211 sigaction (SIGALRM, &sa, NULL); /* our timeout. */
212 sigaction (SIGINT, &sa, NULL); /* Ctrl-C at terminal for example. */
213 sigaction (SIGQUIT, &sa, NULL); /* Ctrl-\ at terminal for example. */
214 sigaction (SIGTERM, &sa, NULL); /* if we're killed, stop monitored proc. */
215 sigaction (SIGHUP, &sa, NULL); /* terminal closed for example. */
219 main (int argc, char **argv)
221 unsigned long timeout;
222 char signame[SIG2STR_MAX];
226 initialize_main (&argc, &argv);
227 set_program_name (argv[0]);
228 setlocale (LC_ALL, "");
229 bindtextdomain (PACKAGE, LOCALEDIR);
230 textdomain (PACKAGE);
232 initialize_exit_failure (EXIT_CANCELED);
233 atexit (close_stdout);
235 parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE_NAME, VERSION,
236 usage, AUTHORS, (char const *) NULL);
238 while ((c = getopt_long (argc, argv, "+s:", long_options, NULL)) != -1)
243 term_signal = operand2sig (optarg, signame);
244 if (term_signal == -1)
245 usage (EXIT_CANCELED);
248 usage (EXIT_CANCELED);
253 if (argc - optind < 2)
254 usage (EXIT_CANCELED);
256 if (xstrtoul (argv[optind], &ep, 10, &timeout, NULL)
257 /* Invalid interval. Note 0 disables timeout */
258 || (timeout > UINT_MAX)
259 /* Extra chars after the number and an optional s,m,h,d char. */
260 || (*ep && *(ep + 1))
261 /* Check any suffix char and update timeout based on the suffix. */
262 || !apply_time_suffix ((unsigned int *) &timeout, *ep))
264 error (0, 0, _("invalid time interval %s"), quote (argv[optind]));
265 usage (EXIT_CANCELED);
272 /* Ensure we're in our own group so all subprocesses can be killed.
273 * Note we don't put the just child in a separate group as
274 * then we would need to worry about foreground and background groups
275 * and propagating signals between them. */
278 /* Setup handlers before fork() so that we
279 * handle any signals caused by child, without races. */
280 install_signal_handlers ();
281 signal (SIGTTIN, SIG_IGN); /* don't sTop if background child needs tty. */
282 signal (SIGTTOU, SIG_IGN); /* don't sTop if background child needs tty. */
284 monitored_pid = fork ();
285 if (monitored_pid == -1)
290 else if (monitored_pid == 0)
294 /* exec doesn't reset SIG_IGN -> SIG_DFL. */
295 signal (SIGTTIN, SIG_DFL);
296 signal (SIGTTOU, SIG_DFL);
298 execvp (argv[0], argv); /* FIXME: should we use "sh -c" ... here? */
300 /* exit like sh, env, nohup, ... */
301 exit_status = (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
309 alarm ((unsigned int) timeout);
311 /* We're just waiting for a single process here, so wait() suffices.
312 * Note the signal() calls above on linux and BSD at least, essentially
313 * call the lower level sigaction() with the SA_RESTART flag set, which
314 * ensures the following wait call will only return if the child exits,
315 * not on this process receiving a signal. Also we're not passing
316 * WUNTRACED | WCONTINUED to a waitpid() call and so will not get
317 * indication that the child has stopped or continued. */
320 if (WIFEXITED (status))
321 status = WEXITSTATUS (status);
322 else if (WIFSIGNALED (status))
323 status = WTERMSIG (status) + 128; /* what sh does at least. */
326 return EXIT_TIMEDOUT;
334 * indent-tabs-mode: nil