tests: more automated quote adjustment
[coreutils/ericb.git] / src / timeout.c
blobca8f0eb08106d577b7bfe11888a643f8c6b6b6ac
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
28 Caveats:
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. */
47 #include <config.h>
48 #include <getopt.h>
49 #include <stdio.h>
50 #include <sys/types.h>
51 #include <signal.h>
52 #include <sys/wait.h>
54 #include "system.h"
55 #include "c-strtod.h"
56 #include "xstrtod.h"
57 #include "sig2str.h"
58 #include "operand2sig.h"
59 #include "error.h"
60 #include "quote.h"
62 #if HAVE_SETRLIMIT
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>
66 #endif
68 /* NonStop circa 2011 lacks both SA_RESTART and siginterrupt. */
69 #ifndef SA_RESTART
70 # define SA_RESTART 0
71 #endif
73 #define PROGRAM_NAME "timeout"
75 #define AUTHORS proper_name_utf8 ("Padraig Brady", "P\303\241draig Brady")
77 static int timed_out;
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 */
84 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},
96 {NULL, 0, NULL, 0}
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. */
104 static void
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 };
117 timer_t timerid;
118 if (timer_create (CLOCK_REALTIME, NULL, &timerid) == 0)
120 if (timer_settime (timerid, 0, &its, NULL) == 0)
121 return;
122 else
124 error (0, errno, _("warning: timer_settime"));
125 timer_delete (timerid);
128 else if (errno != ENOSYS)
129 error (0, errno, _("warning: timer_create"));
130 #endif
132 unsigned int timeint;
133 if (UINT_MAX <= duration)
134 timeint = UINT_MAX;
135 else
137 unsigned int duration_floor = duration;
138 timeint = duration_floor + (duration_floor < duration);
140 alarm (timeint);
143 /* send SIG avoiding the current process. */
145 static int
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. */
155 if (where == 0)
156 signal (sig, SIG_IGN);
157 return kill (where, sig);
160 static void
161 cleanup (int sig)
163 if (sig == SIGALRM)
165 timed_out = 1;
166 sig = term_signal;
168 if (monitored_pid)
170 if (kill_after)
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. */
184 if (!foreground)
185 send_sig (0, sig);
186 if (sig != SIGKILL && sig != SIGCONT)
188 send_sig (monitored_pid, SIGCONT);
189 if (!foreground)
190 send_sig (0, SIGCONT);
193 else /* we're the child or the child is not exec'd yet. */
194 _exit (128 + sig);
197 void
198 usage (int status)
200 if (status != EXIT_SUCCESS)
201 emit_try_help ();
202 else
204 printf (_("\
205 Usage: %s [OPTION] DURATION COMMAND [ARG]...\n\
206 or: %s [OPTION]\n"), program_name, program_name);
208 fputs (_("\
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\
212 "), stdout);
213 fputs (_("\
214 --foreground\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);
229 fputs (_("\n\
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);
234 fputs (_("\n\
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.\n"), stdout);
240 emit_ancillary_info ();
242 exit (status);
245 /* Given a floating point value *X, and a suffix character, SUFFIX_CHAR,
246 scale *X by the multiplier implied by SUFFIX_CHAR. SUFFIX_CHAR may
247 be the NUL byte or `s' to denote seconds, `m' for minutes, `h' for
248 hours, or `d' for days. If SUFFIX_CHAR is invalid, don't modify *X
249 and return false. Otherwise return true. */
251 static bool
252 apply_time_suffix (double *x, char suffix_char)
254 int multiplier;
256 switch (suffix_char)
258 case 0:
259 case 's':
260 multiplier = 1;
261 break;
262 case 'm':
263 multiplier = 60;
264 break;
265 case 'h':
266 multiplier = 60 * 60;
267 break;
268 case 'd':
269 multiplier = 60 * 60 * 24;
270 break;
271 default:
272 return false;
275 *x *= multiplier;
277 return true;
280 static double
281 parse_duration (const char* str)
283 double duration;
284 const char *ep;
286 if (!xstrtod (str, &ep, &duration, c_strtod)
287 /* Nonnegative interval. */
288 || ! (0 <= duration)
289 /* No extra chars after the number and an optional s,m,h,d char. */
290 || (*ep && *(ep + 1))
291 /* Check any suffix char and update timeout based on the suffix. */
292 || !apply_time_suffix (&duration, *ep))
294 error (0, 0, _("invalid time interval %s"), quote (str));
295 usage (EXIT_CANCELED);
298 return duration;
301 static void
302 install_signal_handlers (int sigterm)
304 struct sigaction sa;
305 sigemptyset (&sa.sa_mask); /* Allow concurrent calls to handler */
306 sa.sa_handler = cleanup;
307 sa.sa_flags = SA_RESTART; /* Restart syscalls if possible, as that's
308 more likely to work cleanly. */
310 sigaction (SIGALRM, &sa, NULL); /* our timeout. */
311 sigaction (SIGINT, &sa, NULL); /* Ctrl-C at terminal for example. */
312 sigaction (SIGQUIT, &sa, NULL); /* Ctrl-\ at terminal for example. */
313 sigaction (SIGHUP, &sa, NULL); /* terminal closed for example. */
314 sigaction (SIGTERM, &sa, NULL); /* if we're killed, stop monitored proc. */
315 sigaction (sigterm, &sa, NULL); /* user specified termination signal. */
319 main (int argc, char **argv)
321 double timeout;
322 char signame[SIG2STR_MAX];
323 int c;
325 initialize_main (&argc, &argv);
326 set_program_name (argv[0]);
327 setlocale (LC_ALL, "");
328 bindtextdomain (PACKAGE, LOCALEDIR);
329 textdomain (PACKAGE);
331 initialize_exit_failure (EXIT_CANCELED);
332 atexit (close_stdout);
334 while ((c = getopt_long (argc, argv, "+k:s:", long_options, NULL)) != -1)
336 switch (c)
338 case 'k':
339 kill_after = parse_duration (optarg);
340 break;
342 case 's':
343 term_signal = operand2sig (optarg, signame);
344 if (term_signal == -1)
345 usage (EXIT_CANCELED);
346 break;
348 case FOREGROUND_OPTION:
349 foreground = true;
350 break;
352 case_GETOPT_HELP_CHAR;
354 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
356 default:
357 usage (EXIT_CANCELED);
358 break;
362 if (argc - optind < 2)
363 usage (EXIT_CANCELED);
365 timeout = parse_duration (argv[optind++]);
367 argv += optind;
369 /* Ensure we're in our own group so all subprocesses can be killed.
370 Note we don't just put the child in a separate group as
371 then we would need to worry about foreground and background groups
372 and propagating signals between them. */
373 if (!foreground)
374 setpgid (0, 0);
376 /* Setup handlers before fork() so that we
377 handle any signals caused by child, without races. */
378 install_signal_handlers (term_signal);
379 signal (SIGTTIN, SIG_IGN); /* Don't stop if background child needs tty. */
380 signal (SIGTTOU, SIG_IGN); /* Don't stop if background child needs tty. */
381 signal (SIGCHLD, SIG_DFL); /* Don't inherit CHLD handling from parent. */
383 monitored_pid = fork ();
384 if (monitored_pid == -1)
386 error (0, errno, _("fork system call failed"));
387 return EXIT_CANCELED;
389 else if (monitored_pid == 0)
390 { /* child */
391 int exit_status;
393 /* exec doesn't reset SIG_IGN -> SIG_DFL. */
394 signal (SIGTTIN, SIG_DFL);
395 signal (SIGTTOU, SIG_DFL);
397 execvp (argv[0], argv); /* FIXME: should we use "sh -c" ... here? */
399 /* exit like sh, env, nohup, ... */
400 exit_status = (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
401 error (0, errno, _("failed to run command %s"), quote (argv[0]));
402 return exit_status;
404 else
406 pid_t wait_result;
407 int status;
409 settimeout (timeout);
411 while ((wait_result = waitpid (monitored_pid, &status, 0)) < 0
412 && errno == EINTR)
413 continue;
415 if (wait_result < 0)
417 /* shouldn't happen. */
418 error (0, errno, _("error waiting for command"));
419 status = EXIT_CANCELED;
421 else
423 if (WIFEXITED (status))
424 status = WEXITSTATUS (status);
425 else if (WIFSIGNALED (status))
427 int sig = WTERMSIG (status);
428 /* The following is not used as one cannot disable processing
429 by a filter in /proc/sys/kernel/core_pattern on Linux. */
430 #if 0 && HAVE_SETRLIMIT && defined RLIMIT_CORE
431 if (!timed_out)
433 /* exit with the signal flag set, but avoid core files. */
434 if (setrlimit (RLIMIT_CORE, &(struct rlimit) {0,0}) == 0)
436 signal (sig, SIG_DFL);
437 raise (sig);
439 else
440 error (0, errno, _("warning: disabling core dumps failed"));
442 #endif
443 status = sig + 128; /* what sh returns for signaled processes. */
445 else
447 /* shouldn't happen. */
448 error (0, 0, _("unknown status from command (0x%X)"), status);
449 status = EXIT_FAILURE;
453 if (timed_out)
454 return EXIT_TIMEDOUT;
455 else
456 return status;