From: Andrew Price Date: Fri, 28 Mar 2014 01:42:47 +0000 (+0000) Subject: iowatcher: Check program exit code properly X-Git-Tag: blktrace-1.1.0~2^2~11 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=6061d941fc91e079edf76402bab2056063637d96;p=blktrace.git iowatcher: Check program exit code properly The return value of posix_spawnp() was being checked but the exit status of the child process was being ignored. This adds checks and error reporting based on the status that waitpid returns. Signed-off-by: Andrew Price --- diff --git a/iowatcher/tracers.c b/iowatcher/tracers.c index 8f96372..ed5efa1 100644 --- a/iowatcher/tracers.c +++ b/iowatcher/tracers.c @@ -182,6 +182,7 @@ int run_program2(int argc, char **argv) { int i; int err; + int status; pid_t pid; fprintf(stderr, "running"); @@ -191,11 +192,21 @@ int run_program2(int argc, char **argv) err = posix_spawnp(&pid, argv[0], NULL, NULL, argv, environ); if (err != 0) { - fprintf(stderr, "%s failed with exit code %d\n", argv[0], err); - return err; + fprintf(stderr, "Could not run '%s': %s\n", argv[0], strerror(err)); + return -err; } - waitpid(pid, NULL, 0); - return 0; + waitpid(pid, &status, 0); + if (WIFEXITED(status)) { + err = WEXITSTATUS(status); + if (err == 127) /* spawnp failed after forking */ + fprintf(stderr, "Failed to run '%s'\n", argv[0]); + else if (err) + fprintf(stderr, "'%s' failed with exit status %d\n", argv[0], err); + } else if (WIFSIGNALED(status)) { + fprintf(stderr, "'%s' killed by signal %d\n", argv[0], WTERMSIG(status)); + return 1; + } + return err; } int wait_for_tracers(void)