philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 1 | // Copyright 2014 The Bazel Authors. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | // process-wrapper runs a subprocess with a given timeout (optional), |
| 16 | // redirecting stdout and stderr to given files. Upon exit, whether |
| 17 | // from normal termination or timeout, the subprocess (and any of its children) |
| 18 | // is killed. |
| 19 | // |
| 20 | // The exit status of this program is whatever the child process returned, |
| 21 | // unless process-wrapper receives a signal. ie, on SIGTERM this program will |
| 22 | // die with raise(SIGTERM) even if the child process handles SIGTERM with |
| 23 | // exit(0). |
| 24 | |
philwo | 75b58db | 2017-06-06 09:20:37 -0400 | [diff] [blame] | 25 | #include "src/main/tools/process-wrapper.h" |
| 26 | |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 27 | #include <err.h> |
| 28 | #include <errno.h> |
| 29 | #include <signal.h> |
| 30 | #include <stdbool.h> |
| 31 | #include <stdio.h> |
| 32 | #include <stdlib.h> |
| 33 | #include <string.h> |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 34 | #include <sys/stat.h> |
Philipp Wollermann | ef32c6a | 2017-05-16 18:05:14 +0200 | [diff] [blame] | 35 | #include <sys/types.h> |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 36 | #include <sys/wait.h> |
| 37 | #include <unistd.h> |
Philipp Wollermann | ef32c6a | 2017-05-16 18:05:14 +0200 | [diff] [blame] | 38 | #include <string> |
| 39 | #include <vector> |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 40 | |
philwo | 67cea8f | 2017-05-17 20:36:58 +0200 | [diff] [blame] | 41 | #include "src/main/tools/logging.h" |
Philipp Wollermann | ef32c6a | 2017-05-16 18:05:14 +0200 | [diff] [blame] | 42 | #include "src/main/tools/process-tools.h" |
philwo | 75b58db | 2017-06-06 09:20:37 -0400 | [diff] [blame] | 43 | #include "src/main/tools/process-wrapper-legacy.h" |
philwo | 9d9ac15 | 2017-06-21 15:25:10 +0200 | [diff] [blame] | 44 | #include "src/main/tools/process-wrapper-options.h" |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 45 | |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 46 | int main(int argc, char *argv[]) { |
philwo | 9d9ac15 | 2017-06-21 15:25:10 +0200 | [diff] [blame] | 47 | ParseOptions(argc, argv); |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 48 | |
| 49 | SwitchToEuid(); |
| 50 | SwitchToEgid(); |
| 51 | |
Philipp Wollermann | ef32c6a | 2017-05-16 18:05:14 +0200 | [diff] [blame] | 52 | Redirect(opt.stdout_path, STDOUT_FILENO); |
| 53 | Redirect(opt.stderr_path, STDERR_FILENO); |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 54 | |
philwo | 75b58db | 2017-06-06 09:20:37 -0400 | [diff] [blame] | 55 | LegacyProcessWrapper::RunCommand(); |
philwo | c4f271d | 2017-05-15 19:10:21 +0200 | [diff] [blame] | 56 | |
| 57 | return 0; |
| 58 | } |