1 /* timeout -- run a command with bounded time
2 Copyright (C) 2008-2012 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>
58 #include "operand2sig.h"
63 /* FreeBSD 5.0 at least needs <sys/types.h> and <sys/time.h> included
64 before <sys/resource.h>. Currently "system.h" includes <sys/time.h>. */
65 # include <sys/resource.h>
68 /* NonStop circa 2011 lacks both SA_RESTART and siginterrupt. */
73 #define PROGRAM_NAME "timeout"
75 #define AUTHORS proper_name_utf8 ("Padraig Brady", "P\303\241draig Brady")
78 static int term_signal
= SIGTERM
; /* same default as kill command. */
79 static int monitored_pid
;
80 static double kill_after
;
81 static bool foreground
; /* whether to use another program group. */
83 /* for long options with no corresponding short option, use enum */
86 FOREGROUND_OPTION
= CHAR_MAX
+ 1
89 static struct option
const long_options
[] =
91 {"kill-after", required_argument
, NULL
, 'k'},
92 {"signal", required_argument
, NULL
, 's'},
93 {"foreground", no_argument
, NULL
, FOREGROUND_OPTION
},
94 {GETOPT_HELP_OPTION_DECL
},
95 {GETOPT_VERSION_OPTION_DECL
},
99 /* Start the timeout after which we'll receive a SIGALRM.
100 Round DURATION up to the next representable value.
101 Treat out-of-range values as if they were maximal,
102 as that's more useful in practice than reporting an error.
103 '0' means don't timeout. */
105 settimeout (double duration
)
107 /* timer_settime() provides potentially nanosecond resolution.
108 setitimer() is more portable (to Darwin for example),
109 but only provides microsecond resolution and thus is
110 a little more awkward to use with timespecs, as well as being
111 deprecated by POSIX. Instead we fallback to single second
112 resolution provided by alarm(). */
114 #if HAVE_TIMER_SETTIME
115 struct timespec ts
= dtotimespec (duration
);
116 struct itimerspec its
= { {0, 0}, ts
};
118 if (timer_create (CLOCK_REALTIME
, NULL
, &timerid
) == 0)
120 if (timer_settime (timerid
, 0, &its
, NULL
) == 0)
124 error (0, errno
, _("warning: timer_settime"));
125 timer_delete (timerid
);
128 else if (errno
!= ENOSYS
)
129 error (0, errno
, _("warning: timer_create"));
132 unsigned int timeint
;
133 if (UINT_MAX
<= duration
)
137 unsigned int duration_floor
= duration
;
138 timeint
= duration_floor
+ (duration_floor
< duration
);
143 /* send SIG avoiding the current process. */
146 send_sig (int where
, int sig
)
148 /* If sending to the group, then ignore the signal,
149 so we don't go into a signal loop. Note that this will ignore any of the
150 signals registered in install_signal_handlers(), that are sent after we
151 propagate the first one, which hopefully won't be an issue. Note this
152 process can be implicitly multithreaded due to some timer_settime()
153 implementations, therefore a signal sent to the group, can be sent
154 multiple times to this process. */
156 signal (sig
, SIG_IGN
);
157 return kill (where
, sig
);
172 /* Start a new timeout after which we'll send SIGKILL. */
173 term_signal
= SIGKILL
;
174 settimeout (kill_after
);
175 kill_after
= 0; /* Don't let later signals reset kill alarm. */
178 /* Send the signal directly to the monitored child,
179 in case it has itself become group leader,
180 or is not running in a separate group. */
181 send_sig (monitored_pid
, sig
);
182 /* The normal case is the job has remained in our
183 newly created process group, so send to all processes in that. */
186 if (sig
!= SIGKILL
&& sig
!= SIGCONT
)
188 send_sig (monitored_pid
, SIGCONT
);
190 send_sig (0, SIGCONT
);
193 else /* we're the child or the child is not exec'd yet. */
200 if (status
!= EXIT_SUCCESS
)
205 Usage: %s [OPTION] DURATION COMMAND [ARG]...\n\
206 or: %s [OPTION]\n"), program_name
, program_name
);
209 Start COMMAND, and kill it if still running after DURATION.\n\
211 Mandatory arguments to long options are mandatory for short options too.\n\
215 When not running timeout directly from a shell prompt,\n\
216 allow COMMAND to read from the TTY and receive TTY signals.\n\
217 In this mode, children of COMMAND will not be timed out.\n\
218 -k, --kill-after=DURATION\n\
219 also send a KILL signal if COMMAND is still running\n\
220 this long after the initial signal was sent.\n\
221 -s, --signal=SIGNAL\n\
222 specify the signal to be sent on timeout.\n\
223 SIGNAL may be a name like 'HUP' or a number.\n\
224 See 'kill -l' for a list of signals\n"), stdout
);
226 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
227 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
230 DURATION is a floating point number with an optional suffix:\n\
231 's' for seconds (the default), 'm' for minutes, 'h' for hours \
232 or 'd' for days.\n"), stdout
);
235 If the command times out, then exit with status 124. Otherwise, exit\n\
236 with the status of COMMAND. If no signal is specified, send the TERM\n\
237 signal upon timeout. The TERM signal kills any process that does not\n\
238 block or catch that signal. For other processes, it may be necessary to\n\
239 use the KILL (9) signal, since this signal cannot be caught. If the\n\
240 KILL (9) signal is sent, the exit status is 128+9 rather than 124.\n"), stdout
);
241 emit_ancillary_info ();
246 /* Given a floating point value *X, and a suffix character, SUFFIX_CHAR,
247 scale *X by the multiplier implied by SUFFIX_CHAR. SUFFIX_CHAR may
248 be the NUL byte or 's' to denote seconds, 'm' for minutes, 'h' for
249 hours, or 'd' for days. If SUFFIX_CHAR is invalid, don't modify *X
250 and return false. Otherwise return true. */
253 apply_time_suffix (double *x
, char suffix_char
)
267 multiplier
= 60 * 60;
270 multiplier
= 60 * 60 * 24;
282 parse_duration (const char* str
)
287 if (!xstrtod (str
, &ep
, &duration
, c_strtod
)
288 /* Nonnegative interval. */
290 /* No extra chars after the number and an optional s,m,h,d char. */
291 || (*ep
&& *(ep
+ 1))
292 /* Check any suffix char and update timeout based on the suffix. */
293 || !apply_time_suffix (&duration
, *ep
))
295 error (0, 0, _("invalid time interval %s"), quote (str
));
296 usage (EXIT_CANCELED
);
303 install_signal_handlers (int sigterm
)
306 sigemptyset (&sa
.sa_mask
); /* Allow concurrent calls to handler */
307 sa
.sa_handler
= cleanup
;
308 sa
.sa_flags
= SA_RESTART
; /* Restart syscalls if possible, as that's
309 more likely to work cleanly. */
311 sigaction (SIGALRM
, &sa
, NULL
); /* our timeout. */
312 sigaction (SIGINT
, &sa
, NULL
); /* Ctrl-C at terminal for example. */
313 sigaction (SIGQUIT
, &sa
, NULL
); /* Ctrl-\ at terminal for example. */
314 sigaction (SIGHUP
, &sa
, NULL
); /* terminal closed for example. */
315 sigaction (SIGTERM
, &sa
, NULL
); /* if we're killed, stop monitored proc. */
316 sigaction (sigterm
, &sa
, NULL
); /* user specified termination signal. */
320 main (int argc
, char **argv
)
323 char signame
[SIG2STR_MAX
];
326 initialize_main (&argc
, &argv
);
327 set_program_name (argv
[0]);
328 setlocale (LC_ALL
, "");
329 bindtextdomain (PACKAGE
, LOCALEDIR
);
330 textdomain (PACKAGE
);
332 initialize_exit_failure (EXIT_CANCELED
);
333 atexit (close_stdout
);
335 while ((c
= getopt_long (argc
, argv
, "+k:s:", long_options
, NULL
)) != -1)
340 kill_after
= parse_duration (optarg
);
344 term_signal
= operand2sig (optarg
, signame
);
345 if (term_signal
== -1)
346 usage (EXIT_CANCELED
);
349 case FOREGROUND_OPTION
:
353 case_GETOPT_HELP_CHAR
;
355 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
358 usage (EXIT_CANCELED
);
363 if (argc
- optind
< 2)
364 usage (EXIT_CANCELED
);
366 timeout
= parse_duration (argv
[optind
++]);
370 /* Ensure we're in our own group so all subprocesses can be killed.
371 Note we don't just put the child in a separate group as
372 then we would need to worry about foreground and background groups
373 and propagating signals between them. */
377 /* Setup handlers before fork() so that we
378 handle any signals caused by child, without races. */
379 install_signal_handlers (term_signal
);
380 signal (SIGTTIN
, SIG_IGN
); /* Don't stop if background child needs tty. */
381 signal (SIGTTOU
, SIG_IGN
); /* Don't stop if background child needs tty. */
382 signal (SIGCHLD
, SIG_DFL
); /* Don't inherit CHLD handling from parent. */
384 monitored_pid
= fork ();
385 if (monitored_pid
== -1)
387 error (0, errno
, _("fork system call failed"));
388 return EXIT_CANCELED
;
390 else if (monitored_pid
== 0)
394 /* exec doesn't reset SIG_IGN -> SIG_DFL. */
395 signal (SIGTTIN
, SIG_DFL
);
396 signal (SIGTTOU
, SIG_DFL
);
398 execvp (argv
[0], argv
); /* FIXME: should we use "sh -c" ... here? */
400 /* exit like sh, env, nohup, ... */
401 exit_status
= (errno
== ENOENT
? EXIT_ENOENT
: EXIT_CANNOT_INVOKE
);
402 error (0, errno
, _("failed to run command %s"), quote (argv
[0]));
410 settimeout (timeout
);
412 while ((wait_result
= waitpid (monitored_pid
, &status
, 0)) < 0
418 /* shouldn't happen. */
419 error (0, errno
, _("error waiting for command"));
420 status
= EXIT_CANCELED
;
424 if (WIFEXITED (status
))
425 status
= WEXITSTATUS (status
);
426 else if (WIFSIGNALED (status
))
428 int sig
= WTERMSIG (status
);
429 /* The following is not used as one cannot disable processing
430 by a filter in /proc/sys/kernel/core_pattern on Linux. */
431 #if 0 && HAVE_SETRLIMIT && defined RLIMIT_CORE
434 /* exit with the signal flag set, but avoid core files. */
435 if (setrlimit (RLIMIT_CORE
, &(struct rlimit
) {0,0}) == 0)
437 signal (sig
, SIG_DFL
);
441 error (0, errno
, _("warning: disabling core dumps failed"));
444 status
= sig
+ 128; /* what sh returns for signaled processes. */
448 /* shouldn't happen. */
449 error (0, 0, _("unknown status from command (0x%X)"), status
);
450 status
= EXIT_FAILURE
;
455 return EXIT_TIMEDOUT
;